mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 13:56:26 -05:00
18 lines
423 B
Go
18 lines
423 B
Go
package sp
|
|
|
|
type Specil struct {
|
|
Results int `json:"results"`
|
|
Pages int `json:"pages"`
|
|
Items map[string]*Item `json:"list"`
|
|
}
|
|
|
|
type Item struct {
|
|
Title string `json:"title"`
|
|
Cover string `json:"cover"`
|
|
MCover string `json:"m_cover"`
|
|
SCover string `json:"s_cover"`
|
|
CTime string `json:"create_at"`
|
|
SpID int64 `json:"spid"`
|
|
Attention int `json:"attention"`
|
|
}
|