Created
October 15, 2018 12:26
-
-
Save rajeevshukla/9adc46c24fdb5b4f6012103b382a71cb to your computer and use it in GitHub Desktop.
Car details
This file contains 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 { | |
private Integer id; | |
private String make; | |
private String model; | |
private String color; | |
private Integer year; | |
private Double price; | |
//Getters & Setters omitted. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment