Created
March 14, 2018 17:51
-
-
Save pictos/368f66b6a64faacf3150526eb7babe8c 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
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:{||}", ChoiceFormat ="{1}")] | |
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; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment