using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAdjCodes { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _SortOrder = 0; public int SortOrder { get {return this._SortOrder;} set {this._SortOrder = value;} } private string _AdjCode = String.Empty; public string AdjCode { get {return this._AdjCode;} set {this._AdjCode = value;} } private string _AdjDescription = String.Empty; public string AdjDescription { get {return this._AdjDescription;} set {this._AdjDescription = value;} } }