mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-16 18:33:28 -06:00
12 lines
238 B
Swift
12 lines
238 B
Swift
import Foundation
|
|
|
|
/// A route to a specific screen in the tutorial.
|
|
///
|
|
public enum TutorialRoute: Equatable, Hashable {
|
|
/// A route that dismisses the tutorial.
|
|
case dismiss
|
|
|
|
/// A route to the tutorial.
|
|
case tutorial
|
|
}
|