// // 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 }