using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPatientsPractiveExtras { private int _ExtraID = 0; public int ExtraID { get {return this._ExtraID;} set {this._ExtraID = value;} } private int _PatientID = 0; public int PatientID { get {return this._PatientID;} set {this._PatientID = value;} } private bool _Flag = false; public bool Flag { get {return this._Flag;} set {this._Flag = value;} } private string _Extra = String.Empty; public string Extra { get {return this._Extra;} set {this._Extra = value;} } }