primeros cambios para manejar los permisos y grupos
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Entidades.Dto;
|
||||
|
||||
public class InquilinoDto {
|
||||
public long Dni { get; set; }
|
||||
public string Nombre { get; set; } = "";
|
||||
public string Apellido { get; set; } = "";
|
||||
|
||||
}
|
||||
@@ -1,9 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Entidades.Dto;
|
||||
|
||||
public class LoginDto
|
||||
{
|
||||
public string Email {get; set;} = string.Empty;
|
||||
public string Contraseña {get; set;} = string.Empty;
|
||||
public string? Contraseña {get; set;} = string.Empty;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user