using YLErp.DBModels; namespace YLErp.Modules.RiskEngine.Dto { public class RiskVariableSimpleItem { public long Id { get; set; } public string VariableName { get; set; } public RiskVariableCategory Category { get; set; } public RiskVariableDataType DataType { get; set; } public string Unit { get; set; } public string VariableExpr { get; set; } } }