라이브 - 방만들기 추가
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// CreateLiveRoomRequest.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/14.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct CreateLiveRoomRequest: Encodable {
|
||||
let title: String
|
||||
let content: String
|
||||
let coverImageUrl: String?
|
||||
let tags: [String]
|
||||
let numberOfPeople: Int
|
||||
var isAdult: Bool = false
|
||||
var price = 0
|
||||
var type: LiveRoomCreateViewModel.LiveRoomType = .OPEN
|
||||
var password: String? = nil
|
||||
let timezone: String = TimeZone.current.identifier
|
||||
var beginDateTimeString: String? = nil
|
||||
}
|
Reference in New Issue
Block a user