26 lines
476 B
Swift
26 lines
476 B
Swift
//
|
|
// SPOpenAppModel.swift
|
|
// MoviaBox
|
|
//
|
|
// Created by 佳尔 on 2025/5/8.
|
|
//
|
|
|
|
import UIKit
|
|
import SmartCodable
|
|
|
|
class SPOpenAppModel: SPModel, SmartCodable {
|
|
|
|
enum Path: String, SmartCaseDefaultable {
|
|
case videoDetail = "detail"
|
|
///反馈列表
|
|
case feedback = "feedback"
|
|
///活动
|
|
case promotion = "promotion"
|
|
}
|
|
|
|
var id: String?
|
|
var message_id: String?
|
|
var short_play_id: String?
|
|
var path: Path?
|
|
}
|