using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCampaignMessage { private string _message = String.Empty; public string message { get {return this._message;} set {this._message = value;} } private string _mobile = String.Empty; public string mobile { get {return this._mobile;} set {this._mobile = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _campaignId = 0; public int campaignId { get {return this._campaignId;} set {this._campaignId = value;} } private int _messageType = 0; public int messageType { get {return this._messageType;} set {this._messageType = value;} } private int _status = 0; public int status { get {return this._status;} set {this._status = value;} } private int _statusCode = 0; public int statusCode { get {return this._statusCode;} set {this._statusCode = value;} } private DateTime _dateSent = DateTime.MinValue; public DateTime dateSent { get {return this._dateSent;} set {this._dateSent = value;} } private string _email = String.Empty; public string email { get {return this._email;} set {this._email = value;} } private string _statusDisplay = String.Empty; public string statusDisplay { get {return this._statusDisplay;} set {this._statusDisplay = value;} } }