// Copyright (c) Umbraco.
// See LICENSE for more details.
namespace Umbraco.Cms.Core.Configuration.Models;
///
/// Typed configuration options for disabled healthcheck settings.
///
public class DisabledHealthCheckSettings
{
///
/// Gets or sets a value for the healthcheck Id to disable.
///
public Guid Id { get; set; }
///
/// Gets or sets a value for the date the healthcheck was disabled.
///
public DateTime DisabledOn { get; set; }
///
/// Gets or sets a value for Id of the user that disabled the healthcheck.
///
public int DisabledBy { get; set; }
}