feat(chat-original): 원작 상세 화면 및 캐릭터 무한 스크롤 로딩 구현

This commit is contained in:
Yu Sung
2025-09-16 15:10:51 +09:00
parent 6a7a407a09
commit 16dcc9f0fe
8 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//
// OriginalWorkDetailResponse.swift
// SodaLive
//
// Created by klaus on 9/15/25.
//
struct OriginalWorkDetailResponse: Decodable {
let imageUrl: String?
let title: String
let contentType: String
let category: String
let isAdult: Bool
let description: String
let originalLink: String?
let characters: [Character]
}