using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCampaignRecipient { 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 _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private bool _isIncluded = false; public bool isIncluded { get {return this._isIncluded;} set {this._isIncluded = value;} } private string _recipientName = String.Empty; public string recipientName { get {return this._recipientName;} set {this._recipientName = value;} } private string _recipientNumber = String.Empty; public string recipientNumber { get {return this._recipientNumber;} set {this._recipientNumber = value;} } }