Last active
March 14, 2018 17:47
-
-
Save pictos/5617ff38e49d8a603cf7b4a857c2ad26 to your computer and use it in GitHub Desktop.
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
[Serializable] | |
public class Aluguel | |
{ | |
[Prompt("Por favor nos informe seu {&}:")] | |
public string Nome { get; set; } | |
[Prompt("Entre com sua {&}:")] | |
public string CNH { get; set; } | |
[Prompt("Você gostaria de um carro de qual fabricante?")] | |
public Fabricante Fabricantes { get; set; } | |
[Prompt("Escolha a quantidade de portas:")] | |
public Porta Portas { get; set; } | |
[Prompt("Qual a cor de sua preferência?")] | |
public Cor Cores { get; set; } | |
[Prompt("Você deseja alugar o carro por quantos dias?")] | |
public int Dias { get; set; } | |
public List<Extra> Extras { get; set; } | |
//Resto da classe \/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment