16 lines
544 B
C#
16 lines
544 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace vita_asistente.Models
|
|
{
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
// Custom properties:
|
|
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;
|
|
|
|
// If you want a default role for quick queries (optional):
|
|
public string RolPrincipal { get; set; } = string.Empty;
|
|
}
|
|
} |