ThimraTV/MoviaBox/Class/Wallet/Model/SPVideoUnlockModel.swift
2025-05-06 19:52:12 +08:00

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