- 룰렛 설정 완료 API 적용

- 룰렛 설정 완료 시 신호전송
This commit is contained in:
Yu Sung
2023-12-06 23:24:33 +09:00
parent a22e2e7a51
commit 2e8258a977
9 changed files with 100 additions and 5 deletions

View File

@@ -9,11 +9,12 @@ import Foundation
struct LiveRoomChatRawMessage: Codable {
enum LiveRoomChatRawMessageType: String, Codable {
case DONATION, EDIT_ROOM_INFO, SET_MANAGER
case DONATION, EDIT_ROOM_INFO, SET_MANAGER, TOGGLE_ROULETTE
}
let type: LiveRoomChatRawMessageType
let message: String
let can: Int
let donationMessage: String?
var isActiveRoulette: Bool? = nil
}