using System; using System.Collections.Generic; using System.Linq; namespace Umbraco.Core.Configuration.Models { public class HealthChecksNotificationSettings { public bool Enabled { get; set; } = false; public string FirstRunTime { get; set; } = string.Empty; public TimeSpan Period { get; set; } = TimeSpan.FromHours(24); public IDictionary NotificationMethods { get; set; } = new Dictionary(); public IEnumerable DisabledChecks { get; set; } = Enumerable.Empty(); } }