add BookingBill model

This commit is contained in:
Thomas Ruoff
2020-09-12 00:02:25 +02:00
parent 17ca9e1ae4
commit b5742f389e
3 changed files with 89 additions and 0 deletions

5
db/paymentState.ts Normal file
View File

@@ -0,0 +1,5 @@
export enum PAYMENT_STATE {
OUTSTANDING = 'outstanding',
INVOICED = 'invoiced',
PAID = 'paid',
}