1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-09 15:18:13 -05:00
bitwarden/src/Api/Auth/Models/Response/Opaque/OpaqueLoginStartResponse.cs
2025-03-14 14:16:47 +01:00

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