targo-backend/src/customer-support/dtos/device.dto.ts

17 lines
356 B
TypeScript

// A Device is linked to a Service
// A Device can be used as a "parent" or be a "child" of an other device
export class Device {
id: string;
name:string;
status:string;
address_id: string;
category:string;
model:string;
sn:string;
speed:string;
price:string;
description:string;
tag:string;
photo:string;
}