SodaLive
Preview Content
Resources
Sources
Agora
App
Audition
Common
Content
CustomView
Debug
Dialog
Explorer
Extensions
Follow
Font
FortuneWheel
IAP
ImagePicker
Keyboard
Live
Cancel
EventBanner
Now
Recommend
RecommendChannel
Reservation
Room
Chat
Create
Detail
Dialog
Edit
Menu
Routlette
V2
DeleteLiveRoomDonationMessage.swift
EnterOrQuitLiveRoomRequest.swift
GetLiveRoomDonationStatusResponse.swift
GetLiveRoomDonationTotalResponse.swift
GetLiveRoomUserProfileResponse.swift
GetMemberCanResponse.swift
GetRoomInfoResponse.swift
GetRoomListRequest.swift
LiveRoomDonationMessage.swift
LiveRoomDonationRequest.swift
LiveRoomDonationResponse.swift
LiveRoomKickOutRequest.swift
LiveRoomMember.swift
LiveRoomRequestType.swift
LiveRoomStatus.swift
LiveRoomTopCreatorView.swift
LiveRoomViewModel.swift
SetManagerOrSpeakerOrAudienceRequest.swift
GetRoomListResponse.swift
LiveApi.swift
LiveRepository.swift
LiveView.swift
LiveViewModel.swift
SectionCommunityPostView.swift
StartLiveRequest.swift
Main
Message
MyPage
NavigationBar
Onboarding
Report
SearchChannel
Settings
Shape
Splash
UI
User
Utils
ContentView.swift
SodaLive.entitlements
SodaLive.xcworkspace
generated
.gitignore
Podfile
Podfile.lock
SodaLive-dev.entitlements
model-SodaLive-dev.json
model-SodaLive.json
15 lines
250 B
Swift
15 lines
250 B
Swift
//
|
|
// EnterOrQuitLiveRoomRequest.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/11.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct EnterOrQuitLiveRoomRequest: Encodable {
|
|
let roomId: Int
|
|
let container: String = "ios"
|
|
var password: String? = nil
|
|
}
|