mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 17:29:17 +08:00
20 lines
431 B
Go
20 lines
431 B
Go
|
import { CommonModel } from '.';
|
||
|
|
||
|
export namespace WebSite {
|
||
|
export interface WebSiteCreateReq {
|
||
|
primaryDomain: string;
|
||
|
type: string;
|
||
|
alias: string;
|
||
|
remark: string;
|
||
|
domains: string[];
|
||
|
appType: string;
|
||
|
appInstallID: number;
|
||
|
webSiteGroupID: number;
|
||
|
otherDomains: string;
|
||
|
}
|
||
|
|
||
|
export interface Group extends CommonModel {
|
||
|
name: string;
|
||
|
}
|
||
|
}
|