2025-08-16 13:05:44 -03:00
|
|
|
// Archivo: Elecciones.Core/DTOs/VotosPositivosDto.cs
|
2025-08-14 15:27:45 -03:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Elecciones.Core.DTOs;
|
|
|
|
|
|
|
|
|
|
public class VotosPositivosDto
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("idAgrupacion")]
|
|
|
|
|
public string IdAgrupacion { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("nombreAgrupacion")]
|
|
|
|
|
public string NombreAgrupacion { get; set; } = null!;
|
2025-08-16 13:05:44 -03:00
|
|
|
|
|
|
|
|
[JsonPropertyName("idAgrupacionTelegrama")]
|
|
|
|
|
public string? IdAgrupacionTelegrama { get; set; }
|
2025-08-14 15:27:45 -03:00
|
|
|
|
|
|
|
|
[JsonPropertyName("votos")]
|
|
|
|
|
public long Votos { get; set; }
|
2025-08-16 13:05:44 -03:00
|
|
|
|
|
|
|
|
[JsonPropertyName("votosPorcentaje")]
|
|
|
|
|
public decimal VotosPorcentaje { get; set; }
|
2025-08-14 15:27:45 -03:00
|
|
|
}
|