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