using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEraClaimItemResponse { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _eraClaimItemId = 0; public int eraClaimItemId { get {return this._eraClaimItemId;} set {this._eraClaimItemId = value;} } private string _responseCode = String.Empty; public string responseCode { get {return this._responseCode;} set {this._responseCode = value;} } private string _responseDescription = String.Empty; public string responseDescription { get {return this._responseDescription;} set {this._responseDescription = value;} } }