1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-22 20:11:04 -05:00
bitwarden/src/Api/Auth/Models/Request/Opaque/RegisterFinishRequest.cs
2025-03-12 13:40:04 +01:00

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; }
}