1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 00:39:17 +08:00
1Panel/backend/app/model/website_group.go

8 lines
151 B
Go
Raw Normal View History

2022-10-28 17:04:57 +08:00
package model
type WebSiteGroup struct {
BaseModel
Name string `gorm:"type:varchar(64);not null" json:"name"`
Default bool `json:"default"`
}