Jose Henrique a3d67198af
All checks were successful
API and ETL Build / build_etl (push) Successful in 17s
API and ETL Build / build_api (push) Successful in 9s
partido + melhorias
2025-05-31 20:46:48 -03:00

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; }
}
}