라이브 방 추가
This commit is contained in:
19
SodaLive/Sources/Live/Room/Chat/LiveRoomChatRawMessage.swift
Normal file
19
SodaLive/Sources/Live/Room/Chat/LiveRoomChatRawMessage.swift
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// LiveRoomChatRawMessage.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/14.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct LiveRoomChatRawMessage: Codable {
|
||||
enum LiveRoomChatRawMessageType: String, Codable {
|
||||
case DONATION, EDIT_ROOM_INFO, SET_MANAGER
|
||||
}
|
||||
|
||||
let type: LiveRoomChatRawMessageType
|
||||
let message: String
|
||||
let can: Int
|
||||
let donationMessage: String?
|
||||
}
|
Reference in New Issue
Block a user