mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:54:06 -06:00
11 lines
210 B
Swift
11 lines
210 B
Swift
import Foundation
|
|
|
|
// MARK: - DebugMenuAction
|
|
|
|
/// Actions that can be processed by a `DebugMenuProcessor`.
|
|
///
|
|
enum DebugMenuAction: Equatable {
|
|
/// The dismiss button was tapped.
|
|
case dismissTapped
|
|
}
|