11 lines
238 B
C#
11 lines
238 B
C#
using System.Collections.Generic;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class FormulaDefinition
|
|
{
|
|
public string LogicOperator { get; set; }
|
|
public List<FormulaCondition> Conditions { get; set; }
|
|
}
|
|
}
|