Files
graff-mate-client/src/types/ISession.ts
T

18 lines
396 B
TypeScript

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;
}