mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-30 19:34:30 +01:00
- Updates API key extraction to also accept "Bearer" auth header. This is necessary for non-cookie based SignalR connections. - Adds authentication related models to the client lib - Succeeds and replaces #6484.
11 lines
276 B
C#
11 lines
276 B
C#
#nullable enable
|
|
namespace BTCPayServer.Client.App.Models;
|
|
|
|
public class LoginRequest
|
|
{
|
|
public string? Email { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? TwoFactorCode { get; set; }
|
|
public string? TwoFactorRecoveryCode { get; set; }
|
|
}
|