primeros cambios para manejar los permisos y grupos

This commit is contained in:
2024-11-02 15:41:15 -03:00
parent e550952397
commit 735cdfc344
16 changed files with 249 additions and 86 deletions
+8
View File
@@ -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 -3
View File
@@ -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;
}