Files
Cleanuparr/code/Data/Models/Configuration/IJobConfig.cs
2025-06-15 21:15:50 +03:00

13 lines
344 B
C#

namespace Common.Configuration;
public interface IJobConfig : IConfig
{
bool Enabled { get; init; }
string CronExpression { get; init; }
/// <summary>
/// Indicates whether to use the CronExpression directly (true) or convert from JobSchedule (false)
/// </summary>
bool UseAdvancedScheduling { get; init; }
}