Fix Campos añadidos

This commit is contained in:
2025-08-16 13:05:44 -03:00
parent 69ddf2b2d2
commit 931d0f4e91
19 changed files with 546 additions and 79 deletions

View File

@@ -1,4 +1,4 @@
// src/Elecciones.Core/DTOs/VotosPositivosDto.cs
// Archivo: Elecciones.Core/DTOs/VotosPositivosDto.cs
using System.Text.Json.Serialization;
namespace Elecciones.Core.DTOs;
@@ -10,7 +10,13 @@ public class VotosPositivosDto
[JsonPropertyName("nombreAgrupacion")]
public string NombreAgrupacion { get; set; } = null!;
[JsonPropertyName("idAgrupacionTelegrama")]
public string? IdAgrupacionTelegrama { get; set; }
[JsonPropertyName("votos")]
public long Votos { get; set; }
[JsonPropertyName("votosPorcentaje")]
public decimal VotosPorcentaje { get; set; }
}