2019-08-06 00:12:23 +02:00

11 lines
188 B
TypeScript

/* tslint:disable */
export interface Device {
id?: string;
name?: string;
type?: string;
location?: string;
locationExplanation?: string;
height?: number;
width?: number;
}