Skip to content

Instantly share code, notes, and snippets.

@luisdeol
Created May 11, 2021 16:01
Show Gist options
  • Save luisdeol/3dbb2c09459927cc3635a653c1360180 to your computer and use it in GitHub Desktop.
Save luisdeol/3dbb2c09459927cc3635a653c1360180 to your computer and use it in GitHub Desktop.
Artigo LINQ #2: Classe Pessoa
public class Pessoa
{
public Pessoa(string nomeCompleto, string documento, List<string> emails)
{
NomeCompleto = nomeCompleto;
Documento = documento;
Emails = emails;
}
public string NomeCompleto { get; set; }
public string Documento { get; set; }
public List<string> Emails { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment