17 lines
546 B
C#
17 lines
546 B
C#
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class UpdateRiskApplicationReq
|
|
{
|
|
public RiskControlStrategy ControlStrategy { get; set; }
|
|
public string TriggerPoints { get; set; }
|
|
public string ScopeAssetBookIds { get; set; }
|
|
public string ScopeClientIds { get; set; }
|
|
public string ScopeUnderlyingTypes { get; set; }
|
|
public string ScopeTradeTypes { get; set; }
|
|
public bool ScopeIsGlobal { get; set; }
|
|
public int ExpectedVersion { get; set; }
|
|
}
|
|
}
|