ThimraTV/MoviaBox/Base/Model/SPListModel.swift
2025-04-27 13:36:31 +08:00

23 lines
399 B
Swift

//
// SPListModel.swift
// MoviaBox
//
// Created by on 2025/4/9.
//
import UIKit
import SmartCodable
class SPListModel<T: SmartCodable>: SPModel, SmartCodable {
var list: [T]?
var pagination: SPListPaginationModel?
}
class SPListPaginationModel: SPModel, SmartCodable {
var current_page: Int?
var page_size: Int?
var page_total: Int?
var total_size: Int?
}