
class Car extends Vehicle implements VehicleInterface {

	private String VIN;

	public Car(String vin, String make, String model) {
		super(make, model);
		this.VIN = vin;
	}

	public String getVIN() {
		return VIN;
	}

}
