📄
MonitorOptions.cs
internal sealed class MonitorOptions { public int IntervalSeconds { get; set; } = 300; public string Url { get; set; } = ""; public string Selector { get; set; } = ".detailed-search-results"; public string[] PhoneNumbers { get; set; } = []; public string SmsSenderAddress { get; set; } = "http://localhost:50051"; public bool Headless { get; set; } = true; }