using System.Collections.Generic; namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output; /// /// 邮件项 /// public class EmailItem { /// /// 接收人邮箱 /// public string RecipientEmail { get; set; } = ""; /// /// 邮件主题 /// public string Subject { get; set; } = ""; /// /// 邮件内容 /// public string Content { get; set; } = ""; /// /// 是否HTML格式 /// public bool IsHtml { get; set; } = true; /// /// 附件文件路径列表 /// public List Attachments { get; set; } = new List(); /// /// 个性化变量 /// public Dictionary Variables { get; set; } = new Dictionary(); }