RulesEngine/src/RulesEngine/Models/RuleExpressionType.cs

14 lines
299 B
C#
Raw Normal View History

2019-08-13 06:06:57 -04:00
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace RulesEngine.Models
{
/// <summary>
/// This is rule expression type which will use in rule config files
/// </summary>
public enum RuleExpressionType
{
LambdaExpression = 0
}
}