Files
sodalive-ios/SodaLive/Sources/Live/Room/Edit/EditLiveRoomInfoRequest.swift
Yu Sung 3db59e6236 라이브 정보 수정
- 연령 제한 설정 추가
2024-09-11 23:26:17 +09:00

21 lines
419 B
Swift

//
// EditLiveRoomInfoRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/14.
//
import Foundation
struct EditLiveRoomInfoRequest: Encodable {
let title: String?
let notice: String?
let numberOfPeople: Int?
let beginDateTimeString: String?
let timezone: String?
var menuPanId: Int = 0
var menuPan: String = ""
var isActiveMenuPan: Bool? = nil
var isAdult: Bool? = nil
}