This commit is contained in:
Bastian Wagner
2024-10-25 12:32:26 +02:00
parent d4f1fbbf39
commit b4e264eda9
40 changed files with 538 additions and 66 deletions

View File

@@ -0,0 +1,12 @@
import { IKey } from "./key.interface";
export interface ICylinder {
id: string;
name: string;
createdAt: string;
updatedAt: string;
deletedAt: string;
system: any;
keys: IKey[];
keyCount: number;
}