10 lines
285 B
C#
10 lines
285 B
C#
using System;
|
|
|
|
namespace Nebula.Launcher.Models.Auth;
|
|
|
|
public sealed record AuthenticateRequest(string? Username, Guid? UserId, string Password, string? TfaCode = null)
|
|
{
|
|
public AuthenticateRequest(string username, string password) : this(username, null, password)
|
|
{
|
|
}
|
|
} |