This commit is contained in:
2025-03-20 14:26:57 +05:00
commit eb552cbdc8
55 changed files with 2212 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { IApp } from "./IApp";
import { IClient } from "./IClient";
import { ISession } from "./ISession";
export interface IServer {
id: string;
hostname: string;
name: string;
location: string;
companyId: string;
sessions?: ISession[];
client?: IClient;
app?: IApp;
}