Files
keyvault/api/src/model/interface/key.interface.ts
Bastian Wagner 03ae75c83d ...
2024-10-23 15:16:00 +02:00

12 lines
207 B
TypeScript

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