using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPurchasesExtraNote { private string _note = String.Empty; public string note { get {return this._note;} set {this._note = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _type = 0; public int type { get {return this._type;} set {this._type = value;} } private int _number = 0; public int number { get {return this._number;} set {this._number = value;} } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get {return this._dateSaved;} set {this._dateSaved = value;} } }