mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
11 lines
230 B
Go
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"`
|
|
}
|