using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAdjLocationCodes { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = 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;} } }