shgx_tz_mom/Infrastructure/Model/SendEmailDto.cs

19 lines
478 B
C#
Raw Normal View History

2021-09-28 18:17:31 +08:00
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; }
public DateTime AddTime { get; set; }
}
}