2025-09-06 19:51:07 +02:00

10 lines
267 B
C#

namespace Liber_Incantamentum.Application.Authentification.DTOs.Request
{
public class LoginRequestDto
{
public string? Username { get; set; }
public string? Email { get; set; }
public required string Password { get; set; }
}
}