Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/HealthChecksSettings.cs

13 lines
409 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-03-16 14:02:08 +01:00
using System.Linq;
namespace Umbraco.Core.Configuration.Models
2020-03-16 14:02:08 +01:00
{
public class HealthChecksSettings
2020-03-16 14:02:08 +01:00
{
public IEnumerable<DisabledHealthCheckSettings> DisabledChecks { get; set; } = Enumerable.Empty<DisabledHealthCheckSettings>();
2020-03-18 11:29:29 +01:00
public HealthChecksNotificationSettings Notification { get; set; } = new HealthChecksNotificationSettings();
2020-03-16 14:02:08 +01:00
}
}