Files
ios/BitwardenShared/Core/Auth/Models/Response/UserDecryptionResponseModel.swift

11 lines
296 B
Swift

// MARK: - UserDecryptionResponseModel
/// API response model for the user's decryption info.
///
struct UserDecryptionResponseModel: Codable, Equatable {
// MARK: Properties
/// The user's master password unlock info.
let masterPasswordUnlock: MasterPasswordUnlockResponseModel?
}