feat: integrate SessionCard component and enhance EditTable modal for improved session management

This commit is contained in:
2025-06-03 18:33:18 +05:00
parent e38f4a7fc7
commit a7f2b0c32d
8 changed files with 137 additions and 39 deletions
+3 -1
View File
@@ -1,4 +1,5 @@
import { IApp } from "./IApp";
import { IOwner } from "./IOwner";
import { IServer } from "./IServer";
import { IUser } from "./IUser";
@@ -11,5 +12,6 @@ export interface ISession {
status: "starting" | "started" | "restarted" | "ending" | "ended";
server: IServer;
client: IUser;
app: IApp
app: IApp;
owner: IOwner;
}