18 lines
562 B
C#
18 lines
562 B
C#
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class UpdateRiskVariableReq
|
|
{
|
|
public string VariableName { get; set; }
|
|
public RiskVariableCategory Category { get; set; }
|
|
public RiskVariableDataType DataType { get; set; }
|
|
public string Unit { get; set; }
|
|
public string ValueDomain { get; set; }
|
|
public string Description { get; set; }
|
|
public string VariableExpr { get; set; }
|
|
public int SortOrder { get; set; }
|
|
public int ExpectedVersion { get; set; }
|
|
}
|
|
}
|