upd
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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[];
|
||||
client?: IClient;
|
||||
app?: IApp;
|
||||
}
|
||||
Reference in New Issue
Block a user