mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 10:54:06 -05: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
|
|
}
|