go-common/app/interface/main/web/model/icon.go
2019-04-22 18:49:16 +08:00

11 lines
230 B
Go

package model
// IndexIcon index icon struct.
type IndexIcon struct {
ID int64 `json:"id"`
Title string `json:"title"`
Links []string `json:"links"`
Icon string `json:"icon"`
Weight int `json:"weight"`
}