refactor user accounts structure

This commit is contained in:
2026-03-16 00:35:34 +03:30
parent 20be653499
commit 3c9f6eed1d
286 changed files with 2812 additions and 1133 deletions
@@ -0,0 +1 @@
export * from './io';
@@ -0,0 +1,13 @@
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;
}