/var/www/greso.tech/server/nsm/responseModels/warehouse
Edit: /var/www/greso.tech/server/nsm/responseModels/warehouse/warehouse.model.js (273B)
module.exports = class WarehouseModel {
constructor({ id, companyId, name, own, address, addressId }) {
this.id = id || ''
this.companyId = companyId || ''
this.name = name || ''
this.own = own || 'false'
this.address = address
this.addressId = addressId
}
}