16 lines
406 B
C#
16 lines
406 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BibliotecaAPI.Models
|
|
{
|
|
public class Usuario
|
|
{
|
|
[Key]
|
|
public int IdUsuario { get; set; }
|
|
public string Nombre { get; set; } = string.Empty;
|
|
public string Apellido { get; set; } = string.Empty;
|
|
public DateTime FechaRegistro { get; set; }
|
|
|
|
public ICollection<Prestamo> Prestamos {get;set;}
|
|
}
|
|
}
|