10 lines
267 B
C#
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; }
|
|
}
|
|
}
|