using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oLimitations { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _PatientID = 0; public int PatientID { get {return this._PatientID;} set {this._PatientID = value;} } private string _Limitation = String.Empty; public string Limitation { get {return this._Limitation;} set {this._Limitation = value;} } }