Files
sodalive-ios/SodaLive/Sources/Explorer/GetExplorerResponse.swift
Yu Sung 5a9b95c2bf feat: 메인 홈
- 라이브, 인기 크리, 최신 콘텐츠, 이벤트 배너 UI 추가
2025-07-11 22:31:15 +09:00

30 lines
597 B
Swift

//
// GetExplorerResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/10.
//
import Foundation
struct GetExplorerResponse: Decodable {
let sections: [GetExplorerSectionResponse]
}
struct GetExplorerSectionResponse: Decodable, Hashable {
let title: String
let coloredTitle: String?
let color: String?
let desc: String?
let creators: [GetExplorerSectionCreatorResponse]
}
struct GetExplorerSectionCreatorResponse: Decodable, Hashable {
let id: Int
let nickname: String
let tags: String
let profileImageUrl: String
let followerCount: Int
}