8 lines
163 B
C#
8 lines
163 B
C#
namespace Entidades.Dto;
|
|
|
|
public class LoginDto
|
|
{
|
|
public string Email {get; set;} = string.Empty;
|
|
public string? Contraseña {get; set;} = string.Empty;
|
|
}
|