라이브 메인 페이지

This commit is contained in:
Yu Sung
2023-08-10 12:32:20 +09:00
parent 2456c897c3
commit f8bab4c232
42 changed files with 1873 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
//
// GetRoomListResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import Foundation
struct GetRoomListResponse: Decodable, Hashable {
let roomId: Int
let title: String
let content: String
let beginDateTime: String
let numberOfParticipate: Int
let numberOfPeople: Int
let coverImageUrl: String
let isAdult: Bool
let price: Int
let tags: [String]
let channelName: String?
let managerNickname: String
let managerId: Int
let isReservation: Bool
let isPrivateRoom: Bool
}