Last active
June 8, 2017 09:19
-
-
Save tarek360/072633512cbbbf9c6f36b992a02eb71d to your computer and use it in GitHub Desktop.
Car to JSON
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 Car { | |
long modelNumber; | |
int maxSpeed; | |
String color; | |
String manufacturer; | |
String style; | |
String price; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment