namespace YLErp.Modules.RiskEngine.Dto { public class FormulaCondition { public long VariableId { 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 long? ThresholdVariableId { get; set; } public string ThresholdVariableName { get; set; } public string Unit { get; set; } } }