13 lines
285 B
C#
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;
|
|
}
|
|
}
|