using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAdjLocations { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private string _AdjLocation = String.Empty; public string AdjLocation { get {return this._AdjLocation;} set {this._AdjLocation = value;} } }