opencand/OpenCand.API/Model/ConfigurationModel.cs
Jose Henrique 23256245a0
All checks were successful
API and ETL Build / build_etl (push) Successful in 52s
API and ETL Build / build_api (push) Successful in 11s
add estatistica
2025-06-12 21:00:34 -03:00

11 lines
279 B
C#

namespace OpenCand.API.Model
{
public class ConfigurationModel
{
public List<string> Partidos { get; set; }
public List<string> SiglasUF { get; set; }
public List<int> Anos { get; set; }
public List<string> Cargos { get; set; }
}
}