using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCampaignParcel { private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _mobile = String.Empty; public string mobile { get { return this._mobile; } set { this._mobile = value; } } private int _itemId = 0; public int itemId { get { return this._itemId; } set { this._itemId = 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 string _email = String.Empty; public string email { get { return this._email; } set { this._email = value; } } private int _contactSourceSurface = 0; public int contactSourceSurface { get { return this._contactSourceSurface; } set { this._contactSourceSurface = 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; } } }