// // 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, Hashable { let id: Int var imageUrl: String var isOwned: Bool let imagePriceCan: Int }