| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShwasherSys.Common.Dto
- {
- public class EmailMsg:Message
- {
- public EmailMsg(bool isHtml,string receiveEmails, string title, string msgContent) :base(title, msgContent)
- {
- IsHtml = isHtml;
- ReceiveEmails = receiveEmails;
- }
- public bool IsHtml { get; set; }
- public string ReceiveEmails { get; set; }
- }
- }
|