Files
Cleanuparr/code/Common/Configuration/IJobConfig.cs
2025-06-09 12:50:26 +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; }
}