📄 MonitorOptions.cs
1 2 3 4 5 6 7 8
internal sealed class MonitorOptions
{
    public int IntervalSeconds { get; set; } = 300;
    public string Url { get; set; } = "";
    public string[] PhoneNumbers { get; set; } = [];
    public string SmsSenderAddress { get; set; } = "http://localhost:50051";
}