mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
11 lines
287 B
Go
11 lines
287 B
Go
|
|
package tab
|
||
|
|
|
||
|
|
type Menu struct {
|
||
|
|
ID int64 `json:"id,omitempty"`
|
||
|
|
TagID int64 `json:"tag_id,omitempty"`
|
||
|
|
TabID int64 `json:"tab_id,omitempty"`
|
||
|
|
Title string `json:"title,omitempty"`
|
||
|
|
Name string `json:"name,omitempty"`
|
||
|
|
Priority int `json:"priority,omitempty"`
|
||
|
|
}
|