feat: 신규 홈 추가

This commit is contained in:
Yu Sung
2025-07-11 12:18:37 +09:00
parent fca5425e81
commit e121ec1ee4
12 changed files with 492 additions and 3 deletions

View 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
}