using System.ComponentModel.DataAnnotations;
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Input;
///
/// 获取指定预定义模板输入模型
///
public class GetPredefinedTemplateInput
{
///
/// 模板ID
///
[Required(ErrorMessage = "模板ID不能为空")]
public string TemplateId { get; set; } = "";
}