import { IApp } from "./IApp"; import { IOwner } from "./IOwner"; import { IServer } from "./IServer"; import { IUser } from "./IUser"; export interface ISession { id: string; ownerId: string; serverId: string; clientId: string; companyId: string; status: "starting" | "started" | "restarted" | "ending" | "ended"; server: IServer; client: IUser; app: IApp; owner: IOwner; }