Files
sodalive-ios/SodaLive/Sources/Live/Room/EnterOrQuitLiveRoomRequest.swift
2023-08-14 19:22:23 +09:00

15 lines
250 B
Swift

//
// EnterOrQuitLiveRoomRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/11.
//
import Foundation
struct EnterOrQuitLiveRoomRequest: Encodable {
let roomId: Int
let container: String = "ios"
var password: String? = nil
}