mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 01:13:26 -05:00
23 lines
592 B
Swift
23 lines
592 B
Swift
// MARK: - RemoveMasterPasswordState
|
|
|
|
/// An object that defines the current state of a `RemoveMasterPasswordView`.
|
|
///
|
|
struct RemoveMasterPasswordState: Equatable {
|
|
// MARK: Properties
|
|
|
|
/// A flag indicating if the master password should be revealed or not.
|
|
var isMasterPasswordRevealed = false
|
|
|
|
/// The user's master password.
|
|
var masterPassword: String = ""
|
|
|
|
/// The organization's name.
|
|
let organizationName: String
|
|
|
|
/// The organization's id.
|
|
let organizationId: String
|
|
|
|
/// The organization's key connector url.
|
|
let keyConnectorUrl: String
|
|
}
|