namespace WorkerService.Models { /// /// Database update entry /// public class DataUpdateConfig { /// /// Whether or not the update config is enabled /// public bool Enabled { get; set; } /// /// Interval (in minutes) between updates /// public int Interval { get; set; } /// /// Whether or not the table should be purged prior to update /// public bool PrepurgeData { get; set; } /// /// Whether or not the table should be re-indexed after update /// public bool ReIndexData { get; set; } } }