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