16 lines
419 B
C#
16 lines
419 B
C#
|
|
// 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; }
|
||
|
|
}
|