23 lines
488 B
Swift
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
|
|
}
|