using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace framework_library { [Serializable] public class oEmail { private string _Subject = String.Empty; private string _Body = String.Empty; private string _fromAddress = String.Empty; private string _toAddress = String.Empty; private string _ccAddress = String.Empty; private string _bccAddress = String.Empty; private string _replyToAddress = String.Empty; private List _Attachments = new List(); public String Subject { get { return this._Subject; } set { this._Subject = value; } } public String Body { get { return this._Body; } set { this._Body = value; } } public String fromAddress { get { return this._fromAddress; } set { this._fromAddress = value; } } public String toAddress { get { return this._toAddress; } set { this._toAddress = value; } } public String ccAddress { get { return this._ccAddress; } set { this._ccAddress = value; } } public String bccAddress { get { return this._bccAddress; } set { this._bccAddress = value; } } public List Attachments { get { return this._Attachments; } set { this._Attachments = value; } } public String replyToAddress { get { return this._replyToAddress; } set { this._replyToAddress = value; } } } }