mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 09:19:16 +08:00
25 lines
516 B
Go
25 lines
516 B
Go
|
import { CommonModel } from '.';
|
||
|
|
||
|
export namespace Host {
|
||
|
export interface Host extends CommonModel {
|
||
|
name: string;
|
||
|
addr: string;
|
||
|
port: number;
|
||
|
user: string;
|
||
|
authMode: string;
|
||
|
description: string;
|
||
|
}
|
||
|
export interface HostOperate {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
addr: string;
|
||
|
port: number;
|
||
|
user: string;
|
||
|
authMode: string;
|
||
|
privateKey: string;
|
||
|
password: string;
|
||
|
|
||
|
description: string;
|
||
|
}
|
||
|
}
|