feat: 신규 홈 추가
This commit is contained in:
22
SodaLive/Sources/Home/RecommendChannelResponse.swift
Normal file
22
SodaLive/Sources/Home/RecommendChannelResponse.swift
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user