15 lines
412 B
C#
15 lines
412 B
C#
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class RiskVariableSimpleItem
|
|
{
|
|
public long Id { get; set; }
|
|
public string VariableCode { get; set; }
|
|
public string VariableName { get; set; }
|
|
public RiskVariableCategory Category { get; set; }
|
|
public RiskVariableDataType DataType { get; set; }
|
|
public string Unit { get; set; }
|
|
}
|
|
}
|