partido + melhorias
All checks were successful
API and ETL Build / build_etl (push) Successful in 17s
API and ETL Build / build_api (push) Successful in 9s

This commit is contained in:
2025-05-31 20:46:48 -03:00
parent 146495c07b
commit a3d67198af
14 changed files with 137 additions and 74 deletions

View File

@@ -0,0 +1,9 @@
namespace OpenCand.Core.Models
{
public class Partido
{
public string Sigla { get; set; }
public string Nome { get; set; }
public int Numero { get; set; }
}
}