mirror of
https://github.com/bitwarden/server.git
synced 2025-04-09 15:18:13 -05:00
18 lines
458 B
C#
18 lines
458 B
C#
using Bit.Core.Models.Api;
|
|
|
|
namespace Bit.Api.Auth.Models.Response.Opaque;
|
|
|
|
public class OpaqueLoginStartResponse : ResponseModel
|
|
{
|
|
public OpaqueLoginStartResponse(Guid sessionId, string credentialResponse, string obj = "login-start-response")
|
|
: base(obj)
|
|
{
|
|
CredentialResponse = credentialResponse;
|
|
SessionId = sessionId;
|
|
}
|
|
|
|
public string CredentialResponse { get; set; }
|
|
public Guid SessionId { get; set; }
|
|
}
|
|
|