ios/AuthenticatorShared/UI/Platform/FileSelection/FileSelectionRoute.swift
2024-05-03 08:35:03 -05:00

18 lines
377 B
Swift

// MARK: - FileSelectionRoute
/// The enumeration of file selection options.
///
public enum FileSelectionRoute {
/// A route to the camera screen.
case camera
/// A route to the file browser screen.
case file
/// A route to the file browser screen, focused on JSON files.
case jsonFile
/// A route to the photo library screen.
case photo
}