Feat Widgets Cards y Optimización de Consultas

This commit is contained in:
2025-09-28 19:04:09 -03:00
parent 67634ae947
commit 3b0eee25e6
71 changed files with 5415 additions and 442 deletions

View File

@@ -10,8 +10,14 @@ public class AgrupacionPolitica
public string IdTelegrama { get; set; } = null!;
[Required]
public string Nombre { get; set; } = null!;
public string? NombreCorto { get; set; } // Para leyendas y gráficos
public string? Color { get; set; } // Código hexadecimal, ej: "#1f77b4"
public string? NombreCorto { get; set; }
public string? Color { get; set; }
// --- Campos para Provinciales ---
public int? OrdenDiputados { get; set; }
public int? OrdenSenadores { get; set; }
// --- Campos para Nacionales ---
public int? OrdenDiputadosNacionales { get; set; }
public int? OrdenSenadoresNacionales { get; set; }
}