public static void Main()
Appliance washer = new Appliance();
Console.WriteLine(washer.ToString());
public string Model { get; set; }
public string Description { get; set; }
public string Color { get; set; }
public double Cost { get; set; }
public bool UnderWarranty { get; set; }
public override string ToString()
return "Model is: " + Model
+ "\nDescription: " + Description
+ "\nUnderWarranty " + UnderWarranty