export interface DeviceSchema {
  id: number;
  name: string;
  code: string;
  mode: string;
  type: string;
  property: unknown;
}
