Adhered to linting rules configuration models, validators and tests.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user