mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 09:58:53 -05:00
13 lines
364 B
C#
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; }
|
|
} |