14 lines
272 B
TypeScript
14 lines
272 B
TypeScript
import ISummary from '@/core/models/summary';
|
|
|
|
export interface IDeviceRawResponse {
|
|
id: string;
|
|
name: string;
|
|
brand: ISummary;
|
|
}
|
|
export interface IDeviceResponse extends IDeviceRawResponse {}
|
|
|
|
export interface IDeviceRequest {
|
|
name: string;
|
|
brand_id: string;
|
|
}
|