using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSMSCreditLog { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _transactionType = 0; public int transactionType { get {return this._transactionType;} set {this._transactionType = value;} } private int _qty = 0; public int qty { get {return this._qty;} set {this._qty = value;} } private int _userId = 0; public int userId { get {return this._userId;} set {this._userId = value;} } private DateTime _transactionDate = DateTime.MinValue; public DateTime transactionDate { get {return this._transactionDate;} set {this._transactionDate = value;} } private string _customerCode = String.Empty; public string customerCode { get {return this._customerCode;} set {this._customerCode = value;} } private string _reference = String.Empty; public string reference { get {return this._reference;} set {this._reference = value;} } }