namespace ConnectionsAPI.Config { public class SyncOptions { /// /// The cron expression for the sync schedule /// public string? ScheduleCron { get; set; } /// /// If the sync should run immediately or wait until the next cron occurrence /// public bool? RunImmediately { get; set; } } }