Files
bigcapital/packages/server/src/models/BankRuleCondition.ts
2024-06-18 17:14:30 +02:00

25 lines
367 B
TypeScript

import TenantModel from 'models/TenantModel';
export class BankRuleCondition extends TenantModel {
/**
* Table name.
*/
static get tableName() {
return 'bank_rule_conditions';
}
/**
* Timestamps columns.
*/
get timestamps() {
return [];
}
/**
* Virtual attributes.
*/
static get virtualAttributes() {
return [];
}
}