namespace ECMJobRunner.WebCron.ProfileWorker;
///
/// Configuration options for ProfileWorker background service.
///
public class ProfileWorkerOptions
{
public const string SectionName = "ProfileWorker";
///
/// Interval in milliseconds between profile synchronization checks.
/// Default: 1000ms (1 second)
///
public int IntervalMS { get; set; } = 1000;
}