15 lines
228 B
Swift
15 lines
228 B
Swift
//
|
|
// Character.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 8/29/25.
|
|
//
|
|
|
|
struct Character: Decodable {
|
|
let characterId: Int
|
|
let name: String
|
|
let description: String?
|
|
let imageUrl: String
|
|
let isNew: Bool
|
|
}
|