mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-13 02:58:59 -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
|
|
}
|