using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSClaimDiagnosis { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _treatmentID = 0; public int treatmentID { get {return this._treatmentID;} set {this._treatmentID = value;} } private string _doctorTypeCode = String.Empty; public string doctorTypeCode { get {return this._doctorTypeCode;} set {this._doctorTypeCode = value;} } private string _diagnosisCodeType = String.Empty; public string diagnosisCodeType { get {return this._diagnosisCodeType;} set {this._diagnosisCodeType = value;} } private string _diagnosisCode = String.Empty; public string diagnosisCode { get {return this._diagnosisCode;} set {this._diagnosisCode = value;} } private string _diagnosisDescription = String.Empty; public string diagnosisDescription { get {return this._diagnosisDescription;} set {this._diagnosisDescription = value;} } private string _extendedDiagnosis = String.Empty; public string extendedDiagnosis { get {return this._extendedDiagnosis;} set {this._extendedDiagnosis = value;} } }