Files
keyvault/api/src/model/interface/key.interface.ts
Bastian Wagner bf64103369 Multicylinders
2025-01-02 11:17:28 +01:00

12 lines
209 B
TypeScript

import { Customer, Cylinder } from '../entitites';
export interface IKey {
id: string;
name: string;
nr: string;
handedOut: boolean;
cylinder: Cylinder[];
customer: Customer;
createdAt: Date;
}