2025-01-05 17:05:23 +03:00
|
|
|
|
namespace Nebula.Shared.Models.Auth;
|
2024-12-22 21:38:19 +03:00
|
|
|
|
|
|
|
|
|
|
public sealed record AuthenticateRequest(string? Username, Guid? UserId, string Password, string? TfaCode = null)
|
|
|
|
|
|
{
|
|
|
|
|
|
public AuthenticateRequest(string username, string password) : this(username, null, password)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|