Files
sodalive-ios/SodaLive/Sources/Home/RecommendChannelResponse.swift
2025-07-11 12:18:37 +09:00

23 lines
488 B
Swift

//
// RecommendChannelResponse.swift
// SodaLive
//
// Created by klaus on 7/11/25.
//
struct RecommendChannelResponse: Decodable {
let channelId: Int
let creatorNickname: String
let creatorProfileImageUrl: String
let contentCount: Int
let contentList: [RecommendChannelContentItem]
}
struct RecommendChannelContentItem: Decodable {
let contentId: Int
let title: String
let thumbnailImageUrl: String
let likeCount: Int
let commentCount: Int
}