Skip to content

Instantly share code, notes, and snippets.

@rajeevshukla
Created October 15, 2018 12:26
Show Gist options
  • Save rajeevshukla/9adc46c24fdb5b4f6012103b382a71cb to your computer and use it in GitHub Desktop.
Save rajeevshukla/9adc46c24fdb5b4f6012103b382a71cb to your computer and use it in GitHub Desktop.
Car details
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