Files
bigcapital/server/src/models/BillLandedCostEntry.js
2021-07-22 18:11:17 +02:00

11 lines
211 B
JavaScript

import TenantModel from 'models/TenantModel';
export default class BillLandedCostEntry extends TenantModel {
/**
* Table name
*/
static get tableName() {
return 'bill_located_cost_entries';
}
}