nginx_ui/nginx-ui-dev/model/site.go

11 lines
330 B
Go
Raw Normal View History

2025-03-04 19:28:12 +08:00
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"`
}