mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-08 03:28:36 +00:00
16 lines
328 B
TypeScript
16 lines
328 B
TypeScript
export type ServerAuthorization = 'basic' | 'none';
|
|
export type ServerLocation = 'local' | 'remote';
|
|
|
|
export class Server {
|
|
id: number;
|
|
name: string;
|
|
location: ServerLocation;
|
|
host: string;
|
|
port: number;
|
|
path: string;
|
|
authorization: ServerAuthorization;
|
|
login: string;
|
|
password: string;
|
|
is_local: boolean;
|
|
}
|