mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
13 lines
204 B
Go
13 lines
204 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// Achieve is
|
||
|
|
type Achieve struct {
|
||
|
|
Award string `json:"award"`
|
||
|
|
Mid int64 `json:"mid"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// AchieveGetReply is
|
||
|
|
type AchieveGetReply struct {
|
||
|
|
AwardToken string `json:"award_token"`
|
||
|
|
}
|