19 lines
354 B
Swift
19 lines
354 B
Swift
//
|
|
// OriginalWorkListResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 9/15/25.
|
|
//
|
|
|
|
struct OriginalWorkListResponse: Decodable {
|
|
let totalCount: Int
|
|
let content: [OriginalWorkListItemResponse]
|
|
}
|
|
|
|
struct OriginalWorkListItemResponse: Decodable {
|
|
let id: Int
|
|
let imageUrl: String?
|
|
let title: String
|
|
let contentType: String
|
|
}
|