SodaLive
Preview Content
Resources
Sources
Agora
App
Common
ActivityViewController.swift
ApiResponse.swift
ApiResponseWithoutData.swift
BaseView.swift
LoadingView.swift
TextViewWrapper.swift
Content
Debug
Dialog
Explorer
Extensions
Follow
Font
IAP
ImagePicker
Keyboard
Live
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
15 lines
234 B
Swift
15 lines
234 B
Swift
//
|
|
// ApiResponseWithoutData.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/09.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct ApiResponseWithoutData: Decodable {
|
|
let success: Bool
|
|
let message: String?
|
|
let errorProperty: String?
|
|
}
|