nginx-ui/model/site.go
2024-10-26 10:40:00 +08:00

9 lines
254 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"`
}