using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientSymptom { 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 _symptoms = String.Empty; public string symptoms { get {return this._symptoms;} set {this._symptoms = value;} } private string _drugsTaken = String.Empty; public string drugsTaken { get {return this._drugsTaken;} set {this._drugsTaken = value;} } private string _traumaticEvents = String.Empty; public string traumaticEvents { get {return this._traumaticEvents;} set {this._traumaticEvents = value;} } }