Files
Elecciones-2025/Elecciones-Web/src/Elecciones.Core/DTOs/VotosPositivosDto.cs

16 lines
419 B
C#
Raw Normal View History

// src/Elecciones.Core/DTOs/VotosPositivosDto.cs
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!;
[JsonPropertyName("votos")]
public long Votos { get; set; }
}