mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 17:58:22 -05:00
13 lines
344 B
C#
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; }
|
|
} |