mirror of
https://github.com/bitwarden/ios.git
synced 2026-05-31 05:46:35 -05:00
14 lines
354 B
Swift
14 lines
354 B
Swift
// MARK: - UpdateMasterPasswordEffect
|
|
|
|
/// Effects that can be processed by a `UpdateMasterPasswordProcessor`.
|
|
enum UpdateMasterPasswordEffect: Equatable {
|
|
/// The update master password view appeared on screen.
|
|
case appeared
|
|
|
|
/// The logout button was tapped.
|
|
case logoutTapped
|
|
|
|
/// The save button was tapped.
|
|
case saveTapped
|
|
}
|