Files

17 lines
359 B
C#
Raw Permalink Normal View History

2025-12-12 15:40:34 -03:00
using System.ComponentModel.DataAnnotations;
namespace GestorFacturas.API.Models;
public class Usuario
{
[Key]
public int Id { get; set; }
[Required]
[MaxLength(50)]
public string Username { get; set; } = string.Empty;
[Required]
public string PasswordHash { get; set; } = string.Empty;
public string Nombre { get; set; } = string.Empty;
}