2026-01-12 01:38:55 +01:00
|
|
|
|
namespace TimetableDesigner.Backend.Services.Authentication.DTO.API;
|
2026-01-11 02:30:08 +01:00
|
|
|
|
|
|
|
|
|
|
public class RegisterRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Email { get; set; } = null!;
|
|
|
|
|
|
public string Password { get; set; } = null!;
|
|
|
|
|
|
public string PasswordConfirmation { get; set; } = null!;
|
|
|
|
|
|
}
|