mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
14 lines
216 B
Go
14 lines
216 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// HistoryData ...
|
||
|
|
type HistoryData struct {
|
||
|
|
RoomId int64 `json:"oid"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// user info platform for wallet info
|
||
|
|
const (
|
||
|
|
PlatformPc = "pc"
|
||
|
|
PlatformIos = "ios"
|
||
|
|
PlatformAndroid = "android"
|
||
|
|
)
|