// Copyright (c) Umbraco. // See LICENSE for more details. using System.Collections.Generic; using System.Linq; namespace Umbraco.Cms.Core.Configuration.Models { /// /// Typed configuration options for healthchecks settings. /// [UmbracoOptions(Constants.Configuration.ConfigHealthChecks)] public class HealthChecksSettings { /// /// Gets or sets a value for the collection of healthchecks that are disabled. /// public IEnumerable DisabledChecks { get; set; } = Enumerable.Empty(); /// /// Gets or sets a value for the healthcheck notification settings. /// public HealthChecksNotificationSettings Notification { get; set; } = new HealthChecksNotificationSettings(); } }