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