feat: add new icons and modals, update DesktopCard and TableSelector components for improved UI and functionality
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
export interface IClient {
|
||||
id: string;
|
||||
fullname: string;
|
||||
name: string;
|
||||
email: string;
|
||||
phone: string;
|
||||
companyId: string;
|
||||
createdAt: string;
|
||||
ownerId: string;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { IApp } from "./IApp";
|
||||
import { IClient } from "./IClient";
|
||||
import { ISession } from "./ISession";
|
||||
|
||||
export interface IServer {
|
||||
@@ -10,4 +11,5 @@ export interface IServer {
|
||||
sessions?: ISession[];
|
||||
apps?: IApp[];
|
||||
status: "online" | "offline";
|
||||
client?: IClient;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user