📄 MonitorOptions.cs
1 2 3 4 5 6 7 8 9 10
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;
}