mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
10 lines
198 B
Go
10 lines
198 B
Go
|
|
package shop
|
||
|
|
|
||
|
|
type Info struct {
|
||
|
|
Shop *struct {
|
||
|
|
ID int64 `json:"id,omitempty"`
|
||
|
|
Name string `json:"name,omitempty"`
|
||
|
|
Status int `json:"status,omitempty"`
|
||
|
|
} `json:"shop,omitempty"`
|
||
|
|
}
|