F1 - Autentcacion - Completa

This commit is contained in:
2026-08-10 15:54:42 -03:00
commit dd7f5b3bf6
245 changed files with 81985 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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;
}
}
+9
View File
@@ -0,0 +1,9 @@
namespace vita_asistente.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}