using YLErp.DBModels; namespace YLErp.Modules.RiskEngine.Dto { public class CreateRiskApplicationReq { public string RuleIds { get; set; } 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 int ScopeIsGlobal { get; set; } } }