namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output;
///
/// 模板变量定义
///
public class TemplateVariable
{
///
/// 变量名
///
public string Name { get; set; } = "";
///
/// 变量描述
///
public string Description { get; set; } = "";
///
/// 变量类型
///
public string Type { get; set; } = "string";
///
/// 是否必需
///
public bool IsRequired { get; set; } = false;
///
/// 默认值
///
public string DefaultValue { get; set; } = "";
///
/// 示例值
///
public string ExampleValue { get; set; } = "";
}