mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-10 12:07:50 +08:00
8 lines
151 B
Go
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"`
|
||
|
}
|