mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
9 lines
280 B
Go
9 lines
280 B
Go
package model
|
|
|
|
// EnvGroup represents a group of environments that can be synced across nodes
|
|
type EnvGroup struct {
|
|
Model
|
|
Name string `json:"name"`
|
|
SyncNodeIds []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
|
|
OrderID int `json:"-" gorm:"default:0"`
|
|
}
|