public static void Main(string[] args)
Car myThirdCar = new Car("Ford", "Escape", 2005, "White" );
public string Make {get; set; }
public string Model {get; set; }
public int Year {get; set; }
public string Color {get; set; }
public double OriginalPrice {get; set; }
public Car(string make, string model, int year, string color)