Files
Cleanuparr/code/backend/Cleanuparr.Persistence/Models/Configuration/IJobConfig.cs
2025-06-18 21:58:48 +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; }
}