mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
20 lines
297 B
Go
20 lines
297 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// ArgRPCMid def.
|
||
|
|
type ArgRPCMid struct {
|
||
|
|
Mid int64
|
||
|
|
}
|
||
|
|
|
||
|
|
// PointHistoryResp point history resp.
|
||
|
|
type PointHistoryResp struct {
|
||
|
|
Phs []*OldPointHistory
|
||
|
|
Total int
|
||
|
|
}
|
||
|
|
|
||
|
|
//ArgRPCPointHistory def .
|
||
|
|
type ArgRPCPointHistory struct {
|
||
|
|
Mid int64
|
||
|
|
PS int `form:"ps"`
|
||
|
|
PN int `form:"pn"`
|
||
|
|
}
|