mirror of
https://github.com/bitwarden/server
synced 2025-12-29 22:54:00 +00:00
10 lines
259 B
C#
10 lines
259 B
C#
#nullable enable
|
|
namespace Bit.Core.KeyManagement.Models.Data;
|
|
|
|
public class UserAsymmetricKeys
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public required string PublicKey { get; set; }
|
|
public required string UserKeyEncryptedPrivateKey { get; set; }
|
|
}
|