Chingaderas

This commit is contained in:
RodoIsAlnum
2025-10-28 19:44:12 -06:00
parent e873c3f903
commit aac701d2ce
15 changed files with 662 additions and 50 deletions

View File

@@ -0,0 +1,12 @@
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;
}
}