using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientListing { 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 DateTime _listingDate = DateTime.MinValue; public DateTime listingDate { get {return this._listingDate;} set {this._listingDate = value;} } private string _notes = String.Empty; public string notes { get {return this._notes;} set {this._notes = value;} } private string _scores = String.Empty; public string scores { get {return this._scores;} set {this._scores = value;} } }