8 lines
260 B
C#
8 lines
260 B
C#
namespace TimetableDesigner.Backend.Services.Authentication.DTO;
|
|
|
|
public class RegisterRequest
|
|
{
|
|
public string Email { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
public string PasswordConfirmation { get; set; } = null!;
|
|
} |