mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-12 18:30:41 -06:00
18 lines
377 B
Swift
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
|
|
}
|