41 lines
821 B
Swift
41 lines
821 B
Swift
//
|
|
// SPMineItem.swift
|
|
// Thimra
|
|
//
|
|
// 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
|
|
}
|
|
|
|
|
|
var type: ItemType?
|
|
var iconImage: UIImage?
|
|
var title: String?
|
|
|
|
|
|
}
|