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

10 lines
243 B
Go
Raw Normal View History

2025-03-04 19:28:12 +08:00
package model
type Config struct {
Model
Name string `json:"name"`
Filepath string `json:"filepath"`
SyncNodeIds []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
SyncOverwrite bool `json:"sync_overwrite"`
}