Files
sodalive-ios/SodaLive/Sources/Live/Room/Chat/LiveRoomChatRawMessage.swift
Yu Sung ee34c9a0f8 시그니처 후원
- 시그니처 별로 설정된 시간 만큼 GIF가 재생되도록 기능 추가
2024-05-01 22:29:37 +09:00

23 lines
552 B
Swift

//
// 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, TOGGLE_ROULETTE, ROULETTE_DONATION
}
let type: LiveRoomChatRawMessageType
let message: String
let can: Int
var signature: LiveRoomDonationResponse? = nil
var signatureImageUrl: String? = nil
let donationMessage: String?
var isActiveRoulette: Bool? = nil
}