namespace YLErp.Modules.RiskEngine.Dto { public class RuleCondition { public long VariableId { get; set; } public string Operator { get; set; } public string ThresholdType { get; set; } public object Value { get; set; } public long? ThresholdVariableId { get; set; } } }