/var/www/greso.tech/server/nsm/responseModels/rate_item
Edit: /var/www/greso.tech/server/nsm/responseModels/rate_item/rateItem.model.js (263B)
module.exports = class RateAreaModel {
constructor({ id, companyId, rateFromId, rateToId, price }) {
this.id = id || ''
this.companyId = companyId || ''
this.rateFromId = rateFromId || ''
this.rateToId = rateToId || ''
this.price = price || '0.0'
}
}