This commit is contained in:
Bastian Wagner
2024-10-18 16:52:58 +02:00
parent ed6b2b9c45
commit 76e54cfaa0
32 changed files with 552 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
import { Cylinder } from '../entitites';
export interface IKey {
id: string;
name: string;
nr: number;
handedOut: boolean;
cylinder: Cylinder;
createdAt: Date;
}