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/billingRates.ts Normal file
View File

@@ -0,0 +1,5 @@
export enum BILLING_RATES {
INTERN = 0.24,
EXTERN_UP_TO_200 = 0.45,
EXTERN_OVER_200 = 0.55,
}