16 lines
530 B
C#
16 lines
530 B
C#
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class FormulaCondition
|
|
{
|
|
public string VariableCode { get; set; }
|
|
public string VariableName { get; set; }
|
|
public string VariableType { get; set; }
|
|
public string Operator { get; set; }
|
|
public string ThresholdType { get; set; }
|
|
public object Value { get; set; }
|
|
public string ThresholdVariableCode { get; set; }
|
|
public string ThresholdVariableName { get; set; }
|
|
public string Unit { get; set; }
|
|
}
|
|
}
|