Files
sodalive-ios/SodaLive/Sources/Live/Room/Create/GetRecentRoomInfoResponse.swift

19 lines
408 B
Swift

//
// GetRecentRoomInfoResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/14.
//
import Foundation
struct GetRecentRoomInfoResponse: Decodable {
let title: String
let notice: String
let coverImageUrl: String
let coverImagePath: String
let numberOfPeople: Int
let genderRestriction: LiveRoomCreateViewModel.GenderRestriction
let isCaptureRecordingAvailable: Bool?
}