16 lines
564 B
C#
16 lines
564 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace vita_asistente.Models
|
|
{
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
// Tus propiedades específicas:
|
|
public string Nombre { get; set; } = string.Empty;
|
|
public string Apellido { get; set; } = string.Empty;
|
|
public string Documento { get; set; } = string.Empty;
|
|
public string Direccion { get; set; } = string.Empty;
|
|
|
|
// Si quieres un rol por defecto para consultas rápidas (opcional):
|
|
public string RolPrincipal { get; set; } = string.Empty;
|
|
}
|
|
} |