mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
13 lines
255 B
Go
13 lines
255 B
Go
package v1
|
|
|
|
// ViewsAddRequest .
|
|
type ViewsAddRequest struct {
|
|
Svid int64 `json:"svid" form:"svid" validate:"required"`
|
|
Views int `json:"views" form:"views"`
|
|
}
|
|
|
|
// ViewsAddResponse .
|
|
type ViewsAddResponse struct {
|
|
Affected int64 `json:"affected"`
|
|
}
|