From acf7d9d9c44e057f757d55d936fabc3724b95913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Bispo?= Date: Mon, 24 Jul 2023 09:28:41 +0100 Subject: [PATCH] [PM-2297] Fix model bug --- src/Core/Models/Domain/AccountDecryptionOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Models/Domain/AccountDecryptionOptions.cs b/src/Core/Models/Domain/AccountDecryptionOptions.cs index 2b485e26b..95969f678 100644 --- a/src/Core/Models/Domain/AccountDecryptionOptions.cs +++ b/src/Core/Models/Domain/AccountDecryptionOptions.cs @@ -19,7 +19,7 @@ namespace Bit.Core.Models.Domain public class KeyConnectorOption { - public bool KeyConnectorUrl { get; set; } + public string KeyConnectorUrl { get; set; } } }