namespace Atomx.Admin.Client.Models { public class MessageTemplateModel { /// /// 数据ID /// public long Id { get; set; } /// /// 站点ID /// public long SiteId { get; set; } /// /// 语言编码 /// public int LanguageId { 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 string Attachments { get; set; } = string.Empty; /// /// 是否可用 /// public bool Enabled { get; set; } } }