12 lines
293 B
C#
12 lines
293 B
C#
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Input;
|
|
|
|
/// <summary>
|
|
/// 获取预定义模板列表输入模型
|
|
/// </summary>
|
|
public class GetPredefinedTemplatesInput
|
|
{
|
|
/// <summary>
|
|
/// 模板分类
|
|
/// </summary>
|
|
public string Category { get; set; } = "";
|
|
} |