You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
468 B

namespace Common.Model
{
public class SendEmailParameters
{
public string ToEmails { get; set; }
public string CcEmails { get; set; }
public string BccEmails { get; set; }
public string MsgSubject { get; set; }
public string MsgBody { get; set; }
public override string ToString()
{
return string.Format("To:{0}, subject:{1},MsgBody:{2}", ToEmails, MsgSubject, MsgBody);
}
}
}