mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 01:13:26 -05:00
15 lines
348 B
Swift
15 lines
348 B
Swift
// MARK: - SetMasterPasswordEffect
|
|
|
|
/// Effects that can be processed by a `SetMasterPasswordProcessor`.
|
|
///
|
|
enum SetMasterPasswordEffect: Equatable {
|
|
/// The set master password view appeared on screen.
|
|
case appeared
|
|
|
|
/// The cancel button was pressed.
|
|
case cancelPressed
|
|
|
|
/// The save button was tapped.
|
|
case saveTapped
|
|
}
|