using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSubjectivesLog { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _ComplaintID = 0; public int ComplaintID { get {return this._ComplaintID;} set {this._ComplaintID = value;} } private int _VisitLogID = 0; public int VisitLogID { get {return this._VisitLogID;} set {this._VisitLogID = value;} } private int _Score = 0; public int Score { get {return this._Score;} set {this._Score = value;} } }