using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovSMSCreditHistory { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _qty = 0; public int qty { get {return this._qty;} set {this._qty = 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;} } private string _transactionType = String.Empty; public string transactionType { get {return this._transactionType;} set {this._transactionType = value;} } private string _userDisplay = String.Empty; public string userDisplay { get {return this._userDisplay;} set {this._userDisplay = value;} } }