mirror of https://github.com/ogoun/Zero.git
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.
37 lines
872 B
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; }
|
|
}
|
|
}
|