17 lines
402 B
C#
17 lines
402 B
C#
namespace ChessCubing.App.Models.Auth;
|
|
|
|
public sealed class RegisterRequest
|
|
{
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public string ConfirmPassword { get; set; } = string.Empty;
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
public string? LastName { get; set; }
|
|
}
|