Files
2025-06-22 04:53:33 +03:00

13 lines
364 B
C#

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