16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
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[];
|
|
apps?: IApp[];
|
|
status: "online" | "offline";
|
|
client?: IClient;
|
|
}
|