Files
BibliotecaDigital/BibliotecaDigitalApi/Models/Usuario.cs
RodoIsAlnum fef5ca6aa6 Lito
2025-10-28 20:05:19 -06:00

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;}
}
}