feat(character-detail/gallery): 갤러리 추가 및 이미지 목록 연동

- 에셋 추가: ic_new_lock
- 그리드 UI 적용
This commit is contained in:
Yu Sung
2025-09-02 02:37:35 +09:00
parent f11120b8d0
commit 392184fd34
6 changed files with 229 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
//
// CharacterImageListResponse.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
struct CharacterImageListResponse: Decodable {
let totalCount: Int
let ownedCount: Int
let items: [CharacterImageListItemResponse]
}
struct CharacterImageListItemResponse: Decodable {
let id: Int
let imageUrl: String
let isOwned: Bool
let imagePriceCan: Int
}