mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
10 lines
330 B
Go
10 lines
330 B
Go
package model
|
|
|
|
type Site struct {
|
|
Model
|
|
Path string `json:"path"`
|
|
Advanced bool `json:"advanced"`
|
|
SiteCategoryID uint64 `json:"site_category_id"`
|
|
SiteCategory *SiteCategory `json:"site_category,omitempty"`
|
|
SyncNodeIDs []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
|
|
}
|