ThimraTV/MoviaBox/Class/Mine/Model/SPMineItem.swift
2025-04-28 15:00:29 +08:00

51 lines
1.0 KiB
Swift

//
// SPMineItem.swift
// MoviaBox
//
// Created by on 2025/4/17.
//
import UIKit
struct SPMineItem {
enum ItemType {
///
case orderRecord
///
case language
///
case privacyPolicy
///
case userAgreement
///
case helpCenter
///
case aboutUs
///
case informationProtection
///
case civizatioConvention
///
case informationSharing
///
case persoInforDisclosure
///
case feedBack
///
case settings
///
case consumptionRecords
///
case purchaseRecords
///
case rewardCoins
}
var type: ItemType?
var iconImage: UIImage?
var title: String?
}