mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-12 15:27:15 -05:00
15 lines
291 B
Swift
15 lines
291 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 photo library screen.
|
|
case photo
|
|
}
|