mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
8 lines
205 B
Go
8 lines
205 B
Go
package model
|
|
|
|
type SiteCategory struct {
|
|
Model
|
|
Name string `json:"name"`
|
|
SyncNodeIds []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
|
|
OrderID int `json:"-" gorm:"default:0"`
|
|
}
|