using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovCampaignDetail { private string _campaignBody = String.Empty; public string campaignBody { get {return this._campaignBody;} set {this._campaignBody = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _campaignTypeId = 0; public int campaignTypeId { get {return this._campaignTypeId;} set {this._campaignTypeId = value;} } private int _intervalId = 0; public int intervalId { get {return this._intervalId;} set {this._intervalId = value;} } private int _messageType = 0; public int messageType { get {return this._messageType;} set {this._messageType = value;} } private int _createdBy = 0; public int createdBy { get {return this._createdBy;} set {this._createdBy = value;} } private int _contactSourceSurface = 0; public int contactSourceSurface { get {return this._contactSourceSurface;} set {this._contactSourceSurface = value;} } private DateTime _lastSent = DateTime.MinValue; public DateTime lastSent { get {return this._lastSent;} set {this._lastSent = value;} } private DateTime _nextSend = DateTime.MinValue; public DateTime nextSend { get {return this._nextSend;} set {this._nextSend = value;} } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get {return this._dateSaved;} set {this._dateSaved = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private bool _isRecurring = false; public bool isRecurring { get {return this._isRecurring;} set {this._isRecurring = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isDraft = false; public bool isDraft { get {return this._isDraft;} set {this._isDraft = value;} } private string _campaignTitle = String.Empty; public string campaignTitle { get {return this._campaignTitle;} set {this._campaignTitle = value;} } private string _contactNumberField = String.Empty; public string contactNumberField { get {return this._contactNumberField;} set {this._contactNumberField = value;} } private string _contactNameField = String.Empty; public string contactNameField { get {return this._contactNameField;} set {this._contactNameField = value;} } private string _filterField = String.Empty; public string filterField { get {return this._filterField;} set {this._filterField = value;} } private string _filterValue = String.Empty; public string filterValue { get {return this._filterValue;} set {this._filterValue = value;} } private string _interval = String.Empty; public string interval { get {return this._interval;} set {this._interval = value;} } private string _campaignType = String.Empty; public string campaignType { get {return this._campaignType;} set {this._campaignType = value;} } private string _createdByName = String.Empty; public string createdByName { get {return this._createdByName;} set {this._createdByName = value;} } }