EmailMsg.cs 503 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.Common.Dto
  7. {
  8. public class EmailMsg:Message
  9. {
  10. public EmailMsg(bool isHtml,string receiveEmails, string title, string msgContent) :base(title, msgContent)
  11. {
  12. IsHtml = isHtml;
  13. ReceiveEmails = receiveEmails;
  14. }
  15. public bool IsHtml { get; set; }
  16. public string ReceiveEmails { get; set; }
  17. }
  18. }