12 lines
211 B
Swift
12 lines
211 B
Swift
//
|
|
// OriginalWorkCharactersPageResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 9/15/25.
|
|
//
|
|
|
|
struct OriginalWorkCharactersPageResponse: Decodable {
|
|
let totalCount: Int
|
|
let content: [Character]
|
|
}
|