|
//
|
|
// 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?
|
|
}
|