11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
/* tslint:disable */
|
|
export interface Device {
|
|
id?: string;
|
|
name?: string;
|
|
type?: string;
|
|
location?: string;
|
|
locationExplanation?: string;
|
|
height?: number;
|
|
width?: number;
|
|
}
|