using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPatientType { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private string _patientType = String.Empty; public string patientType { get {return this._patientType;} set {this._patientType = value;} } }