1Panel/backend/app/model/website_group.go
2022-11-17 21:20:33 +08:00

8 lines
151 B
Go

package model
type WebSiteGroup struct {
BaseModel
Name string `gorm:"type:varchar(64);not null" json:"name"`
Default bool `json:"default"`
}