using System.Collections.Generic; namespace NPP.SmartSchedue.Api.Contracts.Services.Time.Output; /// /// 班次规则验证结果 /// public class ShiftRuleValidationResult { /// /// 是否通过验证 /// public bool IsValid { get; set; } /// /// 验证消息 /// public string Message { get; set; } /// /// 违反的规则列表 /// public List ViolatedRules { get; set; } = new List(); /// /// 建议的解决方案 /// public string Suggestion { get; set; } }