mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:54:06 -06:00
10 lines
237 B
Swift
10 lines
237 B
Swift
import Foundation
|
|
|
|
// MARK: - DebugMenuRoute
|
|
|
|
/// A route to specific screens in the` DebugMenuView`
|
|
public enum DebugMenuRoute: Equatable, Hashable {
|
|
/// A route to dismiss the screen currently presented modally.
|
|
case dismiss
|
|
}
|