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 Prestamos {get;set;} } }