mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
19 lines
358 B
Go
19 lines
358 B
Go
package model
|
|
|
|
// ChangeRoomReq .
|
|
type ChangeRoomReq struct {
|
|
RoomID string `json:"room_id"`
|
|
}
|
|
|
|
// RegisterOpReq .
|
|
type RegisterOpReq struct {
|
|
Operation int32 `json:"operation"`
|
|
Operations []int32 `json:"operations"`
|
|
}
|
|
|
|
// UnregisterOpReq .
|
|
type UnregisterOpReq struct {
|
|
Operation int32 `json:"operation"`
|
|
Operations []int32 `json:"operations"`
|
|
}
|