using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientSubjectivesLog { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _visitLogId = 0; public int visitLogId { get {return this._visitLogId;} set {this._visitLogId = 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;} } }