request.go 358 B

123456789101112131415161718
  1. package model
  2. // ChangeRoomReq .
  3. type ChangeRoomReq struct {
  4. RoomID string `json:"room_id"`
  5. }
  6. // RegisterOpReq .
  7. type RegisterOpReq struct {
  8. Operation int32 `json:"operation"`
  9. Operations []int32 `json:"operations"`
  10. }
  11. // UnregisterOpReq .
  12. type UnregisterOpReq struct {
  13. Operation int32 `json:"operation"`
  14. Operations []int32 `json:"operations"`
  15. }