크리에이터 채널

- 시리즈 section 추가
This commit is contained in:
Yu Sung
2024-04-29 16:15:51 +09:00
parent 75b9c76987
commit ffbdbbaa06
7 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
//
// GetSeriesListResponse.swift
// SodaLive
//
// Created by klaus on 4/29/24.
//
import Foundation
struct GetSeriesListResponse: Decodable {
let totalCount: Int
let items: [SeriesListItem]
}
struct SeriesListItem: Decodable {
let seriesId: Int
let title: String
let coverImage: String
let publishedDaysOfWeek: String
let isComplete: Bool
let creator: SeriesListItemCreator
let numberOfContent: Int
let isNew: Bool
let isPopular: Bool
}
struct SeriesListItemCreator: Decodable {
let creatorId: Int
let nickname: String
let profileImage: String
}