ThimraTV/MoviaBox/Class/Home/Model/SPHomeContentModel.swift
2025-06-18 19:26:21 +08:00

28 lines
457 B
Swift

//
// SPHomeContentModel.swift
// MoviaBox
//
// Created by on 2025/6/18.
//
import UIKit
class SPHomeContentModel: NSObject {
enum ContentKey: String {
case banner
case history
///
case nineSquare
case category1
case hot
case category2
}
var key: ContentKey?
var title: String?
var list: [SPShortModel]?
var contentTop: CGFloat = 0
}