GitBrowser
BfiMonitor
eefa7af/MonitorOptions.cs
Name Message Date
📁 Properties Initialize project 1 month ago
📁 Protos Initialize project 1 month ago
📄 .editorconfig Initialize project 1 month ago
📄 .gitignore Initialize project 1 month ago
📄 appsettings.Development.json Real HTML checking in Playwright 1 month ago
📄 appsettings.json Real HTML checking in Playwright 1 month ago
📄 BfiMonitor.csproj First try 1 month ago
📄 BfiMonitor.slnx Initialize project 1 month ago
📄 BfiScreeningCheckerJob.cs Real HTML checking in Playwright 1 month ago
📄 dotnet-tools.json Initialize project 1 month ago
📄 global.json Initialize project 1 month ago
📄 MonitorOptions.cs Real HTML checking in Playwright 1 month ago
📄 PlaywrightBrowserService.cs Real HTML checking in Playwright 1 month ago
📄 Program.cs First try 1 month ago
📄 ScreeningRepository.cs First try 1 month ago
📄 SendSmsJob.cs Real HTML checking in Playwright 1 month ago
📄 MonitorOptions.cs
1 2 3 4 5 6 7 8 9
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";
    public bool Headless { get; set; } = true;
}