Last active
March 14, 2018 13:34
-
-
Save pictos/47c12642ec4b49e06ce0fee80b6d214f 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 enum Fabricante | |
{ | |
Audi=1, | |
BMW, | |
Fiat, | |
Mercedes | |
} | |
public enum Porta | |
{ | |
Duas=1, | |
Quatro | |
} | |
public enum Cor | |
{ | |
Preto=1, | |
Branco, | |
Prata | |
} | |
public enum Extra | |
{ | |
DVD=1, | |
ArCondicionado, | |
Som, | |
GPS | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment