1Panel/backend/app/dto/website.go
2022-11-17 21:11:03 +08:00

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