mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 01:13:26 -05:00
9 lines
266 B
Swift
9 lines
266 B
Swift
/// Effects that can be processed by a `RemoveMasterPasswordProcessor`.
|
|
///
|
|
enum RemoveMasterPasswordEffect: Equatable {
|
|
/// The continue button was tapped.
|
|
case continueFlow
|
|
/// The leave organization button was tapped.
|
|
case leaveOrganizationFlow
|
|
}
|