Files
sodalive-ios/SodaLive/Sources/Chat/Character/New/Models/RecentCharactersResponse.swift

16 lines
320 B
Swift

//
// RecentCharactersResponse.swift
// SodaLive
//
// Created by klaus on 9/12/25.
//
import Foundation
///
/// : totalCount(Long), content(List<Character>)
struct RecentCharactersResponse: Decodable {
let totalCount: Int
let content: [Character]
}