You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/AsService/HostConfigurators/ValidateResult.cs

37 lines
872 B

using System;
namespace ZeroLevel.Services.AsService
{
[Serializable]
public enum ValidationResultDisposition
{
Success,
Warning,
Failure,
}
public interface ValidateResult
{
/// <summary>
/// The disposition of the result, any Failure items will prevent
/// the configuration from completing.
/// </summary>
ValidationResultDisposition Disposition { get; }
/// <summary>
/// The message associated with the result
/// </summary>
string Message { get; }
/// <summary>
/// The key associated with the result (chained if configurators are nested)
/// </summary>
string Key { get; }
/// <summary>
/// The value associated with the result
/// </summary>
string Value { get; }
}
}

Powered by TurnKey Linux.