14 lines
377 B
C#
14 lines
377 B
C#
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class RiskRuleApplicationSummary
|
|
{
|
|
public long Id { get; set; }
|
|
public string ApplicationCode { get; set; }
|
|
public RiskRuleStatus Status { get; set; }
|
|
public RiskControlStrategy ControlStrategy { get; set; }
|
|
public string TriggerPoints { get; set; }
|
|
}
|
|
}
|