// // SPListModel.swift // ShortPlay // // Created by 曾觉新 on 2025/4/9. // import UIKit import SmartCodable class SPListModel: 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? }