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