mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
12 lines
213 B
Go
12 lines
213 B
Go
|
|
package guide
|
||
|
|
|
||
|
|
type Interest struct {
|
||
|
|
ID int `json:"-"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type InterestTM struct {
|
||
|
|
Interests []*Interest `json:"interests,omitempty"`
|
||
|
|
FeedType int `json:"feed_type"`
|
||
|
|
}
|