12 lines
209 B
TypeScript
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;
|
|
}
|