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 is: " + Description
+ "\nunderWarranty is: " + underWarranty