19 lines
534 B
C#
19 lines
534 B
C#
|
|
// src/Elecciones.Core/DTOs/EstadoRecuentoDto.cs
|
||
|
|
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; }
|
||
|
|
|
||
|
|
[JsonPropertyName("cantidadElectores")]
|
||
|
|
public int CantidadElectores { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("participacionPorcentaje")]
|
||
|
|
public decimal ParticipacionPorcentaje { get; set; }
|
||
|
|
}
|