using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEraClaimItem { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _eraMemberId = 0; public int eraMemberId { get {return this._eraMemberId;} set {this._eraMemberId = value;} } private DateTime _treatmentStartDate = DateTime.MinValue; public DateTime treatmentStartDate { get {return this._treatmentStartDate;} set {this._treatmentStartDate = value;} } private decimal _itemClaimAmount = 0; public decimal itemClaimAmount { get {return this._itemClaimAmount;} set {this._itemClaimAmount = value;} } private decimal _totalItemPaidAmount = 0; public decimal totalItemPaidAmount { get {return this._totalItemPaidAmount;} set {this._totalItemPaidAmount = value;} } private string _claimAccountId = String.Empty; public string claimAccountId { get {return this._claimAccountId;} set {this._claimAccountId = value;} } private string _claimResponseResultCode = String.Empty; public string claimResponseResultCode { get {return this._claimResponseResultCode;} set {this._claimResponseResultCode = value;} } private string _procedureCode = String.Empty; public string procedureCode { get {return this._procedureCode;} set {this._procedureCode = value;} } private string _nappiCode = String.Empty; public string nappiCode { get {return this._nappiCode;} set {this._nappiCode = value;} } }