Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created September 2, 2024 13:29
Show Gist options
  • Save renatogroffe/c49a5f2aa803fc79b5f2f875b564c731 to your computer and use it in GitHub Desktop.
Save renatogroffe/c49a5f2aa803fc79b5f2f875b564c731 to your computer and use it in GitHub Desktop.
namespace ConsoleAppIndexEndInitializer.Models;
public class TorneioEsportivo
{
public string? Nome { get; set; }
public Edicao[] UltimasEdicoes { get; set; } = new Edicao[6];
}
public class Edicao
{
public int Ano { get; set; }
public string? EquipeVencedora { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment