site.go 254 B

123456789
  1. package model
  2. type Site struct {
  3. Model
  4. Path string `json:"path"`
  5. Advanced bool `json:"advanced"`
  6. SiteCategoryID uint64 `json:"site_category_id"`
  7. SiteCategory *SiteCategory `json:"site_category,omitempty"`
  8. }