23 lines
598 B
C#
23 lines
598 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Infrastructure.Model
|
|
{
|
|
public class SendEmailDto
|
|
{
|
|
public string FileUrl { get; set; } = "";
|
|
public string Subject { get; set; }
|
|
public string ToUser { get; set; }
|
|
public string Content { get; set; } = "";
|
|
public string HtmlContent { get; set; }
|
|
/// <summary>
|
|
/// 是否发送给自己
|
|
/// </summary>
|
|
public bool SendMe { get; set; }
|
|
public DateTime AddTime { get; set; }
|
|
}
|
|
}
|