1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 00:39:17 +08:00
1Panel/backend/app/dto/website.go
2022-11-17 21:20:33 +08:00

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"`
}