using System; using YLErp.DBModels; namespace YLErp.Modules.RiskEngine.Dto { public class RiskApplicationDetail { public long Id { get; set; } public string RuleIds { get; set; } public RiskRuleStatus Status { 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; } public int Version { get; set; } public string OptName { get; set; } public DateTime OptDate { get; set; } public string UpdateOptName { get; set; } public DateTime UpdateDate { get; set; } } }