Modulos Pacientes Listo

This commit is contained in:
2026-08-11 23:21:29 -03:00
parent b4b25e49e0
commit 7c04a64269
164 changed files with 1717 additions and 5643 deletions
+2 -2
View File
@@ -4,13 +4,13 @@ namespace vita_asistente.Models
{
public class ApplicationUser : IdentityUser
{
// Tus propiedades específicas:
// 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;
// Si quieres un rol por defecto para consultas rápidas (opcional):
// If you want a default role for quick queries (optional):
public string RolPrincipal { get; set; } = string.Empty;
}
}