2025-08-14 15:27:45 -03:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Elecciones.Core.DTOs;
|
|
|
|
|
|
|
|
|
|
public class EstadoRecuentoDto
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("mesasEsperadas")]
|
|
|
|
|
public int MesasEsperadas { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("mesasTotalizadas")]
|
|
|
|
|
public int MesasTotalizadas { get; set; }
|
|
|
|
|
|
2025-08-15 17:31:51 -03:00
|
|
|
[JsonPropertyName("mesasTotalizadasPorcentaje")]
|
|
|
|
|
public decimal MesasTotalizadasPorcentaje { get; set; }
|
|
|
|
|
|
2025-08-14 15:27:45 -03:00
|
|
|
[JsonPropertyName("cantidadElectores")]
|
|
|
|
|
public int CantidadElectores { get; set; }
|
2025-08-15 17:31:51 -03:00
|
|
|
|
|
|
|
|
[JsonPropertyName("cantidadVotantes")]
|
|
|
|
|
public int CantidadVotantes { get; set; }
|
2025-08-14 15:27:45 -03:00
|
|
|
|
|
|
|
|
[JsonPropertyName("participacionPorcentaje")]
|
|
|
|
|
public decimal ParticipacionPorcentaje { get; set; }
|
|
|
|
|
}
|