namespace Atomx.Admin.Client.Models
{
public class MessageTemplateModel
{
///
/// 数据ID
///
public long Id { get; set; }
///
/// 消息模板类型
///
public string Type { get; set; } = string.Empty;
///
/// 信息模板KEY
///
public string Key { get; set; } = string.Empty;
///
/// 消息模板名称
///
public string Name { get; set; } = string.Empty;
///
/// 消息标题
///
public string Title { get; set; } = string.Empty;
///
/// 消息内容
///
public string Body { get; set; } = string.Empty;
///
/// 是否可用
///
public bool Enabled { get; set; }
}
}