using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSubscriberSMS { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } 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;} } }