using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSMSCredit { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _currentBalance = 0; public int currentBalance { get {return this._currentBalance;} set {this._currentBalance = value;} } private int _threshold = 0; public int threshold { get {return this._threshold;} set {this._threshold = value;} } private int _allocatedBalance = 0; public int allocatedBalance { get {return this._allocatedBalance;} set {this._allocatedBalance = value;} } private int _availableBalance = 0; public int availableBalance { get {return this._availableBalance;} set {this._availableBalance = value;} } private string _customerCode = String.Empty; public string customerCode { get {return this._customerCode;} set {this._customerCode = value;} } }