Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created September 23, 2024 13:46
Show Gist options
  • Save renatogroffe/fcaed2306a3f9e4e97e7162e5d710bba to your computer and use it in GitHub Desktop.
Save renatogroffe/fcaed2306a3f9e4e97e7162e5d710bba to your computer and use it in GitHub Desktop.
namespace ConsoleAppJsonSchemaExporter.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[]? PaisSede { 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