Files
sodalive-ios/SodaLive/Sources/Explorer/GetExplorerResponse.swift
Yu Sung 7318d7fcda fix: 메인 홈 - 인기 크리에이터
- 팔로우 수 제거
- 팔로우 버튼 추가
- 배경: 그라데이션 제거, 하나의 색으로 설정
2025-07-21 23:10:24 +09:00

30 lines
591 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
var follow: Bool
}