SendEmailDto.cs 598 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Infrastructure.Model
  7. {
  8. public class SendEmailDto
  9. {
  10. public string FileUrl { get; set; } = "";
  11. public string Subject { get; set; }
  12. public string ToUser { get; set; }
  13. public string Content { get; set; } = "";
  14. public string HtmlContent { get; set; }
  15. /// <summary>
  16. /// 是否发送给自己
  17. /// </summary>
  18. public bool SendMe { get; set; }
  19. public DateTime AddTime { get; set; }
  20. }
  21. }