import { Section } from './section'; export class Device { id: string; name: string; enabled: boolean; section: Section; creationDate: string; lastUser: string; lastDate?: string; public constructor(init?: Partial) { Object.assign(this, init); } }