mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-12 15:27:15 -05:00
11 lines
296 B
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?
|
|
}
|