website-nav/http/vo/navigation.go

19 lines
371 B
Go
Raw Normal View History

2024-10-18 17:19:19 +08:00
package vo
// TypeItem
// @description: 导航分类
type TypeItem struct {
ID string `json:"id"`
Name string `json:"name"`
Icon string `json:"icon"`
}
type NavigationItem struct {
ID string `json:"id"`
Title string `json:"title"`
Url string `json:"url"`
Icon string `json:"icon"`
Desc string `json:"desc"`
Enabled bool `json:"enabled"`
}