Created
May 11, 2021 16:01
-
-
Save luisdeol/3dbb2c09459927cc3635a653c1360180 to your computer and use it in GitHub Desktop.
Artigo LINQ #2: Classe Pessoa
This file contains hidden or 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
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