20 lines
671 B
C#
20 lines
671 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 ImplementationScript { get; set; }
|
|
public string SourceExpression { get; set; }
|
|
public bool IsImplemented { get; set; }
|
|
public int SortOrder { get; set; }
|
|
public int ExpectedVersion { get; set; }
|
|
}
|
|
}
|