go-common/app/interface/main/broadcast/model/request.go
2019-04-22 18:49:16 +08:00

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"`
}