SodaLive
Preview Content
Resources
Sources
Agora
App
Common
Content
Debug
Dialog
Explorer
Extensions
Follow
Font
IAP
ImagePicker
Keyboard
Live
Cancel
EventBanner
Now
Recommend
RecommendChannel
Reservation
Room
Chat
Create
Tag
CreateLiveRoomRequest.swift
CreateLiveRoomResponse.swift
GetRecentRoomInfoResponse.swift
LiveRoomCreateView.swift
LiveRoomCreateViewModel.swift
Detail
Dialog
Edit
Routlette
DeleteLiveRoomDonationMessage.swift
EnterOrQuitLiveRoomRequest.swift
GetLiveRoomDonationStatusResponse.swift
GetLiveRoomDonationTotalResponse.swift
GetLiveRoomUserProfileResponse.swift
GetMemberCanResponse.swift
GetRoomInfoResponse.swift
GetRoomListRequest.swift
LiveRoomDonationMessage.swift
LiveRoomDonationRequest.swift
LiveRoomKickOutRequest.swift
LiveRoomMember.swift
LiveRoomRequestType.swift
LiveRoomStatus.swift
LiveRoomTopCreatorView.swift
LiveRoomView.swift
LiveRoomViewModel.swift
SetManagerOrSpeakerOrAudienceRequest.swift
GetRoomListResponse.swift
LiveApi.swift
LiveRepository.swift
LiveView.swift
LiveViewModel.swift
StartLiveRequest.swift
Main
Message
MyPage
NavigationBar
Onboarding
Report
Settings
Shape
Splash
User
Utils
ContentView.swift
SodaLive.entitlements
SodaLive.xcworkspace
generated
.gitignore
Podfile
Podfile.lock
SodaLive-dev.entitlements
model-SodaLive-dev.json
model-SodaLive.json
17 lines
296 B
Swift
17 lines
296 B
Swift
//
|
|
// GetRecentRoomInfoResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/14.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct GetRecentRoomInfoResponse: Decodable {
|
|
let title: String
|
|
let notice: String
|
|
let coverImageUrl: String
|
|
let coverImagePath: String
|
|
let numberOfPeople: Int
|
|
}
|