mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
9 lines
230 B
Go
9 lines
230 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// ReportAction report message
|
||
|
|
type ReportAction struct {
|
||
|
|
Cid int64 `json:"cid"` // 视频id
|
||
|
|
Did int64 `json:"dmid"` // 弹幕id
|
||
|
|
HideTime int64 `json:"hide_time"` // 弹幕隐截止j时间
|
||
|
|
}
|