This commit is contained in:
2025-03-24 12:24:58 +05:00
parent 15dbaab168
commit 143ba63e09
11 changed files with 232 additions and 134 deletions
+3 -1
View File
@@ -1,4 +1,5 @@
import { ISession } from './ISession';
import { IApp } from "./IApp";
import { ISession } from "./ISession";
export interface IServer {
id: string;
@@ -7,4 +8,5 @@ export interface IServer {
location: string;
companyId: string;
sessions?: ISession[];
apps?: IApp[];
}