MoviaBox/Thimra/Class/Mine/Model/SPMineItem.swift
2025-04-24 11:14:21 +08:00

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?
}