mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -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"`
|
||
|
|
}
|