using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovAccountClaimHistoryLog { private int _claimLogId = 0; public int claimLogId { get {return this._claimLogId;} set {this._claimLogId = 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 DateTime _requestDate = DateTime.MinValue; public DateTime requestDate { get {return this._requestDate;} set {this._requestDate = 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;} } }