Integrer l'authentification Keycloak dans l'application
This commit is contained in:
16
ChessCubing.App/Models/Auth/RegisterRequest.cs
Normal file
16
ChessCubing.App/Models/Auth/RegisterRequest.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user