using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientOverview { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private string _limitation = String.Empty; public string limitation { get {return this._limitation;} set {this._limitation = value;} } private string _profilePicUrl = String.Empty; public string profilePicUrl { get {return this._profilePicUrl;} set {this._profilePicUrl = value;} } private string _practiceExtras = String.Empty; public string practiceExtras { get {return this._practiceExtras;} set {this._practiceExtras = value;} } }