using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalICD10 { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private bool _isExternal = false; public bool isExternal { get {return this._isExternal;} set {this._isExternal = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _icdCode = String.Empty; public string icdCode { get {return this._icdCode;} set {this._icdCode = value;} } private string _icdDescription = String.Empty; public string icdDescription { get {return this._icdDescription;} set {this._icdDescription = value;} } }