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