From 5e1229f943efb60feda275be229295b934248ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Bispo?= Date: Tue, 18 Jul 2023 11:34:39 +0100 Subject: [PATCH] [PM-2297] Update account decryption options model --- src/Core/Models/Domain/AccountDecryptionOptions.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Core/Models/Domain/AccountDecryptionOptions.cs b/src/Core/Models/Domain/AccountDecryptionOptions.cs index 9c4208317..b989f4a87 100644 --- a/src/Core/Models/Domain/AccountDecryptionOptions.cs +++ b/src/Core/Models/Domain/AccountDecryptionOptions.cs @@ -12,6 +12,7 @@ namespace Bit.Core.Models.Domain { public bool HasAdminApproval { get; set; } public bool HasLoginApprovingDevice { get; } + public bool HasManageResetPasswordPermission { get; } public string EncryptedPrivateKey { get; } public string EncryptedUserKey { get; } }