Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created May 15, 2024 10:51
Show Gist options
  • Save renatogroffe/31d01804e358a8d9fed2f9b10ec9452d to your computer and use it in GitHub Desktop.
Save renatogroffe/31d01804e358a8d9fed2f9b10ec9452d to your computer and use it in GitHub Desktop.
namespace ConsoleAppLinqAggregateBy.Models;
public class Estado(string sigla, string nome, string regiao, int populacao)
{
public string? Sigla => sigla;
public string? Nome => nome;
public string? Regiao => regiao;
public int Populacao => populacao;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment