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