using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovAccountClaimHistory { private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private int _invoiceNo = 0; public int invoiceNo { get {return this._invoiceNo;} set {this._invoiceNo = value;} } private int _responseId = 0; public int responseId { get {return this._responseId;} set {this._responseId = value;} } private int _claimLogId = 0; public int claimLogId { get {return this._claimLogId;} set {this._claimLogId = value;} } private DateTime _dateOfService = DateTime.MinValue; public DateTime dateOfService { get {return this._dateOfService;} set {this._dateOfService = value;} } private bool _allowReversal = false; public bool allowReversal { get {return this._allowReversal;} set {this._allowReversal = value;} } private bool _allowForceFetch = false; public bool allowForceFetch { get {return this._allowForceFetch;} set {this._allowForceFetch = value;} } private bool _allowResubmit = false; public bool allowResubmit { get {return this._allowResubmit;} set {this._allowResubmit = value;} } private string _patientName = String.Empty; public string patientName { get {return this._patientName;} set {this._patientName = value;} } private string _patientSurname = String.Empty; public string patientSurname { get {return this._patientSurname;} set {this._patientSurname = value;} } private string _icd1 = String.Empty; public string icd1 { get {return this._icd1;} set {this._icd1 = value;} } private string _swref = String.Empty; public string swref { get {return this._swref;} set {this._swref = value;} } private string _ResponseLevel = String.Empty; public string ResponseLevel { get {return this._ResponseLevel;} set {this._ResponseLevel = value;} } private string _ResponseResult = String.Empty; public string ResponseResult { get {return this._ResponseResult;} set {this._ResponseResult = value;} } private string _RespondingParty = String.Empty; public string RespondingParty { get {return this._RespondingParty;} set {this._RespondingParty = value;} } private string _DeliveryType = String.Empty; public string DeliveryType { get {return this._DeliveryType;} set {this._DeliveryType = value;} } private string _externalCause = String.Empty; public string externalCause { get {return this._externalCause;} set {this._externalCause = value;} } }