using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMailLogs { private int _entryID = 0; public int entryID { get {return this._entryID;} set {this._entryID = value;} } private int _sendingUserID = 0; public int sendingUserID { get {return this._sendingUserID;} set {this._sendingUserID = value;} } private int _mailType = 0; public int mailType { get {return this._mailType;} set {this._mailType = value;} } private int _msgPriority = 0; public int msgPriority { get {return this._msgPriority;} set {this._msgPriority = value;} } private DateTime _logTimestamp = DateTime.MinValue; public DateTime logTimestamp { get {return this._logTimestamp;} set {this._logTimestamp = value;} } private bool _sendCompleted = false; public bool sendCompleted { get {return this._sendCompleted;} set {this._sendCompleted = value;} } private string _senderAddress = String.Empty; public string senderAddress { get {return this._senderAddress;} set {this._senderAddress = value;} } private string _recipientAddress = String.Empty; public string recipientAddress { get {return this._recipientAddress;} set {this._recipientAddress = value;} } private string _msgSubject = String.Empty; public string msgSubject { get {return this._msgSubject;} set {this._msgSubject = value;} } private string _msgBody = String.Empty; public string msgBody { get {return this._msgBody;} set {this._msgBody = value;} } private string _sendResults = String.Empty; public string sendResults { get {return this._sendResults;} set {this._sendResults = value;} } private string _exceptionData = String.Empty; public string exceptionData { get {return this._exceptionData;} set {this._exceptionData = value;} } private string _ccRecipientAddress = String.Empty; public string ccRecipientAddress { get {return this._ccRecipientAddress;} set {this._ccRecipientAddress = value;} } private string _bccRecipientAddress = String.Empty; public string bccRecipientAddress { get {return this._bccRecipientAddress;} set {this._bccRecipientAddress = value;} } }