Veloria/Veloria/Base/WebView/VPWebScriptModel.swift
2025-06-04 17:20:33 +08:00

26 lines
376 B
Swift

//
// VPWebScriptModel.swift
// Veloria
//
// Created by on 2025/6/4.
//
import UIKit
import SmartCodable
class VPWebScriptModel: VPModel, SmartCodable {
var type: String?
var data: VPWebScriptData?
}
struct VPWebScriptData: SmartCodable {
var activity_id: String?
var short_play_id: String?
var link: String?
}