11 lines
279 B
C#
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; }
|
|
}
|
|
}
|