Created
September 23, 2024 13:46
-
-
Save renatogroffe/fcaed2306a3f9e4e97e7162e5d710bba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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