56 lines
1.1 KiB
Swift
56 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
|
|
///退出登录
|
|
case logout
|
|
}
|
|
|
|
|
|
var type: ItemType?
|
|
var iconImage: UIImage?
|
|
var title: String?
|
|
var subtitle: String?
|
|
|
|
|
|
}
|