sodalive-ios/SodaLive/Sources/Live/Room/Edit/EditLiveRoomInfoRequest.swift

17 lines
297 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?
}