mirror of
https://github.com/bitwarden/server.git
synced 2025-04-15 01:58:14 -05:00
13 lines
315 B
C#
13 lines
315 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bitwarden.OPAQUE;
|
|
|
|
namespace Bit.Api.Auth.Models.Request.Opaque;
|
|
|
|
public class OpaqueRegistrationStartRequest
|
|
{
|
|
[Required]
|
|
public String RegistrationRequest { get; set; }
|
|
[Required]
|
|
public CipherConfiguration CipherConfiguration { get; set; }
|
|
}
|