Asoka.Wang 2b3f9acdce 123
2025-09-22 19:09:47 +08:00

29 lines
706 B
C#

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