This commit is contained in:
RodoIsAlnum
2025-10-28 20:05:19 -06:00
parent aac701d2ce
commit fef5ca6aa6
22 changed files with 2868 additions and 334 deletions

View File

@@ -5,8 +5,11 @@ namespace BibliotecaAPI.Models
public class Usuario
{
[Key]
public int Id { get; set; }
public int IdUsuario { get; set; }
public string Nombre { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Apellido { get; set; } = string.Empty;
public DateTime FechaRegistro { get; set; }
public ICollection<Prestamo> Prestamos {get;set;}
}
}