mirror of
https://github.com/bitwarden/server.git
synced 2025-05-22 20:11:04 -05:00
15 lines
375 B
C#
15 lines
375 B
C#
namespace Bit.Api.Auth.Models.Request.Opaque;
|
|
|
|
public class RegisterFinishRequest
|
|
{
|
|
public String ClientRegisterFinishResult { get; set; }
|
|
public Guid SessionId { get; set; }
|
|
}
|
|
|
|
public class RotateableKeyset
|
|
{
|
|
public String EncryptedUserKey { get; set; }
|
|
public String EncryptedPublicKey { get; set; }
|
|
public String EncryptedPrivateKey { get; set; }
|
|
}
|