using System.Collections.Generic; namespace YLErp.Modules.RiskEngine.Dto { /// /// 停用规则结果 /// public class DisableRuleResult { /// 级联停用的应用 ID 列表 public List CascadedApplicationIds { get; set; } = new List(); } }