27 lines
535 B
Swift
27 lines
535 B
Swift
//
|
|
// SPVideoUnlockModel.swift
|
|
// MoviaBox
|
|
//
|
|
// Created by 佳尔 on 2025/5/6.
|
|
//
|
|
|
|
import UIKit
|
|
import SmartCodable
|
|
|
|
class SPVideoUnlockModel: SPModel, SmartCodable {
|
|
|
|
enum ResponseStatus: String, SmartCaseDefaultable {
|
|
///前面还有没购买的剧
|
|
case jump = "jump"
|
|
///没找到视频
|
|
case noPlay = "no_play"
|
|
///金币不足跳充值
|
|
case notEnough = "not_enough"
|
|
///购买成功
|
|
case success = "success"
|
|
}
|
|
|
|
var status: ResponseStatus?
|
|
|
|
}
|