Files
Cleanuparr/code/Cleanuparr.Persistence/Models/Configuration/IJobConfig.cs
2025-06-17 18:21:18 +03:00

13 lines
367 B
C#

namespace Cleanuparr.Persistence.Models.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; }
}