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.
33 lines
661 B
33 lines
661 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMFrameWork.Mail
|
|
{
|
|
/// <summary>
|
|
/// 邮件信息
|
|
/// </summary>
|
|
public class MailInfo
|
|
{
|
|
/// <summary>
|
|
/// 标题
|
|
/// </summary>
|
|
public String Subject { set; get; }
|
|
|
|
/// <summary>
|
|
/// 内容
|
|
/// </summary>
|
|
public String Content { set; get; }
|
|
|
|
/// <summary>
|
|
/// 附件
|
|
/// </summary>
|
|
public String[] Additional { set; get; }
|
|
|
|
/// <summary>
|
|
/// 收件人
|
|
/// </summary>
|
|
public String[] ToMail { set; get; }
|
|
}
|
|
}
|
|
|