This commit is contained in:
RodoIsAlnum
2025-10-28 20:59:38 -06:00
parent fef5ca6aa6
commit 10c131cd47
329 changed files with 3454 additions and 303 deletions

View File

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