Files
BibliotecaDigital/BibliotecaDigitalApi/Models/Usuario.cs
RodoIsAlnum 10c131cd47 Final
2025-10-28 20:59:38 -06:00

16 lines
408 B
C#

using System.ComponentModel.DataAnnotations;
namespace BibliotecaAPI.Models
{
public class Usuario
{
[Key]
public int Id_Usuario { get; set; }
public string Nombre { get; set; } = string.Empty;
public string Apellido { get; set; } = string.Empty;
public DateTime Fecha_Registro { get; set; }
public ICollection<Prestamo> Prestamos {get;set;}
}
}