Files
BibliotecaDigital/Models/Usuario.cs
MARIFER HERNANDEZ GONZALEZ e873c3f903 MODELS AND CONTROLLERS
2025-10-28 19:40:21 -06:00

13 lines
285 B
C#

using System.ComponentModel.DataAnnotations;
namespace BibliotecaAPI.Models
{
public class Usuario
{
[Key]
public int Id { get; set; }
public string Nombre { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
}
}