mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
8 lines
149 B
Go
8 lines
149 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// Version Cookie中保存的版本信息
|
||
|
|
type Version struct {
|
||
|
|
VersionID int64 `json:"v"`
|
||
|
|
Data map[int]int `json:"d"`
|
||
|
|
}
|