namespace AutoShutdown.Models; internal sealed class NotificationSettings { public NotificationMode Mode { get; set; } = NotificationMode.Local; public string OmniNotifyEndpoint { get; set; } = "http://127.0.0.1:19845/notify"; public string Channel { get; set; } = "default"; public static NotificationSettings Default() => new(); }