namespace JdeScoping.ConfigManager.Models;
///
/// Model for schedule configuration.
///
public class ScheduleModel
{
///
/// Gets or sets a value indicating whether the scheduled task is enabled.
///
public bool Enabled { get; set; } = true;
///
/// Gets or sets the interval in minutes between scheduled task executions.
///
public int IntervalMinutes { get; set; } = 60;
///
/// Gets or sets a value indicating whether to purge data before task execution.
///
public bool PrePurge { get; set; } = false;
///
/// Gets or sets a value indicating whether to reindex after task execution.
///
public bool ReIndex { get; set; } = false;
}