Created
September 2, 2024 13:29
-
-
Save renatogroffe/c49a5f2aa803fc79b5f2f875b564c731 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 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