Handout management

This commit is contained in:
Bastian Wagner
2024-10-20 14:49:42 +02:00
parent 5e2b900b18
commit aa9abdd512
37 changed files with 754 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
import { Cylinder } from '../entitites';
import { Customer, Cylinder } from '../entitites';
export interface IKey {
id: string;
@@ -6,5 +6,6 @@ export interface IKey {
nr: number;
handedOut: boolean;
cylinder: Cylinder;
customer: Customer;
createdAt: Date;
}