10 lines
198 B
C#
10 lines
198 B
C#
namespace OpenCand.Core.Models
|
|
{
|
|
public class Partido
|
|
{
|
|
public string Sigla { get; set; }
|
|
public string Nome { get; set; }
|
|
public int Numero { get; set; }
|
|
}
|
|
}
|