using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAdjustmentDetails { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _AdjID = 0; public int AdjID { get {return this._AdjID;} set {this._AdjID = value;} } private int _AdjLocationID = 0; public int AdjLocationID { get {return this._AdjLocationID;} set {this._AdjLocationID = value;} } private int _AdjCodeID = 0; public int AdjCodeID { get {return this._AdjCodeID;} set {this._AdjCodeID = value;} } }