RulesEngine/src/RulesEngine/Models/RuleErrorType.cs

15 lines
299 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace RulesEngine.Models
{
/// <summary>
/// This is error type of rules which will use in rule config files
/// </summary>
public enum ErrorType
{
Warning = 0,
Error = 1,
}
}