Files
ios/BitwardenShared/UI/Auth/RemoveMasterPassword/RemoveMasterPasswordState.swift
2025-05-02 20:35:33 +01:00

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
}