feat(chat-original): ChatTabView 작품별 탭 및 리스트 UI/API 연동 추가

This commit is contained in:
Yu Sung
2025-09-15 22:42:36 +09:00
parent ed3f3f796a
commit 6a7a407a09
7 changed files with 375 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
//
// OriginalWorkListResponse.swift
// SodaLive
//
// Created by klaus on 9/15/25.
//
struct OriginalWorkListResponse: Decodable {
let totalCount: Int
let content: [OriginalWorkListItemResponse]
}
struct OriginalWorkListItemResponse: Decodable {
let id: Int
let imageUrl: String?
let title: String
let contentType: String
}