using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovAccountClaimResponseErrors { 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 _msgType = String.Empty; public string msgType { get {return this._msgType;} set {this._msgType = value;} } private string _comment = String.Empty; public string comment { get {return this._comment;} set {this._comment = value;} } }