using System.Collections.Generic; namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output; /// /// 获取预定义模板列表输出模型 /// public class GetPredefinedTemplatesOutput { /// /// 预定义模板列表 /// public List Templates { get; set; } = new List(); /// /// 模板总数 /// public int TotalCount { get; set; } /// /// 是否获取成功 /// public bool Success { get; set; } = true; /// /// 错误信息 /// public string ErrorMessage { get; set; } = ""; }