using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovAccountClaimResponseHeader { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _claimLogId = 0; public int claimLogId { get {return this._claimLogId;} set {this._claimLogId = value;} } private string _claimRefNo = String.Empty; public string claimRefNo { get {return this._claimRefNo;} set {this._claimRefNo = 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;} } }