mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
9 lines
254 B
Go
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"`
|
|
}
|