Files
sodalive-ios/SodaLive/Sources/Live/Room/Create/GetRecentRoomInfoResponse.swift
Yu Sung 5159debf7f 라이브 성별 제한 옵션 추가
라이브 생성과 수정 요청에 성별 제한 값을 포함한다.
라이브 정보 조회 응답에 성별 제한 값을 제공한다.
2026-02-02 18:20:26 +09:00

18 lines
365 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
}