Feat Separación de Votos Inválidos

This commit is contained in:
2025-10-15 11:44:22 -03:00
parent 316f49f25b
commit 705a6f0f5e
14 changed files with 861 additions and 9 deletions

View File

@@ -21,8 +21,12 @@ public class EstadoRecuento
public long VotosNulos { get; set; }
public long VotosEnBlanco { get; set; }
public long VotosRecurridos { get; set; }
public long VotosComando { get; set; }
public long VotosImpugnados { get; set; }
public decimal VotosNulosPorcentaje { get; set; }
public decimal VotosEnBlancoPorcentaje { get; set; }
public decimal VotosRecurridosPorcentaje { get; set; }
public decimal VotosComandoPorcentaje { get; set; }
public decimal VotosImpugnadosPorcentaje { get; set; }
public int EleccionId { get; set; }
}