ThimraTV/MoviaBox/Class/Mine/Model/SPMineItem.swift
2025-04-29 18:01:10 +08:00

54 lines
1.1 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 rewardCoins
///
case clearCache
///
case deleteAccount
}
var type: ItemType?
var iconImage: UIImage?
var title: String?
var subtitle: String?
}