Lito
This commit is contained in:
@@ -6,6 +6,7 @@ namespace BibliotecaAPI.Models
|
||||
{
|
||||
public class Prestamo
|
||||
{
|
||||
/*
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
@@ -19,6 +20,14 @@ namespace BibliotecaAPI.Models
|
||||
|
||||
public DateTime FechaPrestamo { get; set; } = DateTime.Now;
|
||||
public DateTime? FechaDevolucion { get; set; }
|
||||
public bool Devuelto { get; set; } = false;
|
||||
public bool Devuelto { get; set; } = false;*/
|
||||
public int IdPrestamo { get; set; }
|
||||
public int IdUsuario { get; set; }
|
||||
public int IdLibro { get; set; }
|
||||
public DateTime FechaPrestamo { get; set; }
|
||||
public bool Devuelto {get;set;}
|
||||
|
||||
public Usuario Usuario { get; set; }
|
||||
public Libro Libro { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user