using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace framework_library { [Serializable] public class oDispatch { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _type = 0; public int type { get { return this._type; } set { this._type = value; } } private int _status = 0; public int status { get { return this._status; } set { this._status = value; } } private DateTime _dateSent = DateTime.MinValue; public DateTime dateSent { get { return this._dateSent; } set { this._dateSent = value; } } private string _subject = String.Empty; public string subject { get { return this._subject; } set { this._subject = value; } } private string _message = String.Empty; public string message { get { return this._message; } set { this._message = value; } } private string _attachments = String.Empty; public string attachments { get { return this._attachments; } set { this._attachments = value; } } private string _sender = String.Empty; public string sender { get { return this._sender; } set { this._sender = value; } } private string _recipient = String.Empty; public string recipient { get { return this._recipient; } set { this._recipient = value; } } } }