17 lines
538 B
C#
17 lines
538 B
C#
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class CreateRiskApplicationReq
|
|
{
|
|
public long RuleId { 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 bool ScopeIsGlobal { get; set; }
|
|
}
|
|
}
|