20 lines
369 B
Swift
20 lines
369 B
Swift
//
|
||
// ProfileRoute.swift
|
||
// suixinkan
|
||
//
|
||
// Created by Codex on 2026/6/22.
|
||
//
|
||
|
||
import Foundation
|
||
|
||
/// 个人中心二级页面路由,集中声明“我的”Tab 可以 push 的页面。
|
||
enum ProfileRoute: Hashable {
|
||
case accountSwitch
|
||
case realNameAuth
|
||
case settings
|
||
case agreement(AgreementPage)
|
||
#if DEBUG
|
||
case debugHomeMenus
|
||
#endif
|
||
}
|