barker/bookie/src/app/core/device.ts

8 lines
110 B
TypeScript
Raw Normal View History

import {Section} from "./section";
export class Device {
id: string;
name: string;
section: Section;
}