1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 17:29:17 +08:00

20 lines
431 B
Go
Raw Normal View History

2022-10-28 17:04:57 +08:00
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;
}
}