mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 00:39:17 +08:00
17 lines
426 B
Go
17 lines
426 B
Go
package dto
|
|
|
|
type WebPage struct {
|
|
PageInfo
|
|
}
|
|
|
|
type WebSiteCreate struct {
|
|
PrimaryDomain string `json:"primaryDomain"`
|
|
Type string `json:"type"`
|
|
Alias string `json:"alias"`
|
|
Remark string `json:"remark"`
|
|
Domains []string `json:"domains"`
|
|
AppType string `json:"appType"`
|
|
AppInstallID uint `json:"appInstallID"`
|
|
WebSiteGroupID uint `json:"webSiteGroupID"`
|
|
}
|