Adhered to linting rules configuration models, validators and tests.

This commit is contained in:
Andy Butland
2020-12-06 10:46:04 +01:00
parent 61cbb84dd3
commit 9f8138b2d0
45 changed files with 840 additions and 173 deletions

View File

@@ -1,13 +1,28 @@
using System;
// Copyright (c) Umbraco.
// See LICENSE for more details.
using System;
namespace Umbraco.Core.Configuration.Models
{
/// <summary>
/// Typed configuration options for disabled healthcheck settings.
/// </summary>
public class DisabledHealthCheckSettings
{
/// <summary>
/// Gets or sets a value for the healthcheck Id to disable.
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Gets or sets a value for the date the healthcheck was disabled.
/// </summary>
public DateTime DisabledOn { get; set; }
/// <summary>
/// Gets or sets a value for Id of the user that disabled the healthcheck.
/// </summary>
public int DisabledBy { get; set; }
}
}