opencand/OpenCand.Core/Models/OpenCandStats.cs
Jose Henrique 684a2c0630
All checks were successful
API and ETL Build / build_etl (push) Successful in 9s
API and ETL Build / build_api (push) Successful in 9s
adding disponibilidade de dados
2025-06-10 13:26:58 -03:00

23 lines
735 B
C#

namespace OpenCand.Core.Models
{
public class OpenCandStats
{
public long TotalCandidatos { get; set; }
public long TotalBemCandidatos { get; set; }
public long TotalValorBemCandidatos { get; set; }
public long TotalRedesSociais { get; set; }
public long TotalEleicoes { get; set; }
}
public class DataAvailabilityStats
{
public List<int> Candidatos { get; set; }
public List<int> BemCandidatos { get; set; }
public List<int> DespesaCandidatos { get; set; }
public List<int> ReceitaCandidatos { get; set; }
public List<int> RedeSocialCandidatos { get; set; }
public List<int> FotosCandidatos { get; set; }
}
}