17 lines
359 B
C#
17 lines
359 B
C#
|
|
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;
|
||
|
|
}
|