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