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

17 lines
426 B
Go
Raw Normal View History

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