1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-16 02:34:45 +08:00
1Panel/agent/app/model/group.go

9 lines
181 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package model
type Group struct {
BaseModel
IsDefault bool `json:"isDefault"`
2024-08-14 10:43:32 +08:00
Name string `gorm:"not null" json:"name"`
Type string `gorm:"not null" json:"type"`
2024-07-23 14:48:37 +08:00
}