mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
7 lines
151 B
Go
7 lines
151 B
Go
package model
|
|
|
|
type SiteCategory struct {
|
|
Model
|
|
Name string `json:"name"`
|
|
SyncNodeIds []int `json:"sync_node_ids" gorm:"serializer:json"`
|
|
}
|