CSharp-Single-EFCore/Bunny.Dao/Vo/Email/EmailTemplateVo.cs

13 lines
247 B
C#
Raw Normal View History

2024-08-08 22:23:36 +08:00
namespace Bunny.Dao.Vo.Email;
public class EmailTemplateVo
{
// 模板名称
public string? TemplateName { get; set; }
// 主题
public string? Subject { get; set; }
// 邮件内容
public string? Body { get; set; }
}