first commot
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 8s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s

This commit is contained in:
孙诚
2025-12-25 11:20:56 +08:00
commit 4526cc6396
104 changed files with 11070 additions and 0 deletions

32
Entity/EmailMessage.cs Normal file
View File

@@ -0,0 +1,32 @@
namespace Entity;
/// <summary>
/// 邮件消息实体
/// </summary>
public class EmailMessage : BaseEntity
{
/// <summary>
/// 邮件主题
/// </summary>
public string Subject { get; set; } = string.Empty;
/// <summary>
/// 邮件发送者
/// </summary>
public string From { get; set; } = string.Empty;
/// <summary>
/// 邮件正文
/// </summary>
public string Body { get; set; } = string.Empty;
/// <summary>
/// 邮件HTML内容
/// </summary>
public string HtmlBody { get; set; } = string.Empty;
/// <summary>
/// 邮件接收时间
/// </summary>
public DateTime ReceivedDate { get; set; }
}