Feat Widgets 1540

This commit is contained in:
2025-09-02 15:39:01 -03:00
parent 271a86b632
commit da581d9714
17 changed files with 742 additions and 258 deletions

View File

@@ -3,7 +3,11 @@ namespace Elecciones.Core.DTOs.ApiResponses;
public class AgrupacionResultadoDto
{
public required string? Id { get; set; }
public string Nombre { get; set; } = null!;
public string? NombreCorto { get; set; } = null!;
public string? Color { get; set; } = null!;
public string? LogoUrl { get; set; } = null!;
public long Votos { get; set; }
public decimal Porcentaje { get; set; }
}