1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-20 02:48:03 -05:00

Attempt to fix tests

This commit is contained in:
Bernd Schoolmann 2025-06-05 17:02:39 +02:00
parent a77e6b926d
commit 0fc9824f88
No known key found for this signature in database

View File

@ -1,4 +1,5 @@
using Bit.Core.KeyManagement.Models.Data;
using System.Text.Json.Serialization;
using Bit.Core.KeyManagement.Models.Data;
using Bit.Core.Models.Api;
namespace Bit.Api.KeyManagement.Models.Response;
@ -13,6 +14,7 @@ namespace Bit.Api.KeyManagement.Models.Response;
/// </summary>
public class PrivateKeysResponseModel : ResponseModel
{
[JsonConstructor]
[System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute]
public PrivateKeysResponseModel(UserAccountKeysData accountKeys) : base("privateKeys")
{