using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovMedicalPatientSubjectiveDetails { private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private int _complaintID = 0; public int complaintID { get {return this._complaintID;} set {this._complaintID = value;} } private int _score = 0; public int score { get {return this._score;} set {this._score = value;} } private DateTime _signInDate = DateTime.MinValue; public DateTime signInDate { get {return this._signInDate;} set {this._signInDate = value;} } private string _ID = String.Empty; public string ID { get {return this._ID;} set {this._ID = value;} } private string _complaint = String.Empty; public string complaint { get {return this._complaint;} set {this._complaint = value;} } private string _date = String.Empty; public string date { get {return this._date;} set {this._date = value;} } private string _note = String.Empty; public string note { get {return this._note;} set {this._note = value;} } }