public static void Main()
Console.WriteLine("Hello World");
Cat defaultCat = new Cat();
Console.WriteLine(defaultCat.ToString());
myCat.PurchasePrice = 100;
myCat.IsVaccinated = true;
Console.WriteLine(myCat.ToString());
public string Name {get; set;}
public string Breed {get; set;}
public string Color {get; set;}
public string OwnerID {get; set;}
public double Weight {get; set;}
public double PurchasePrice {get; set;}
public bool IsVaccinated {get; set;}
public override string ToString()
return "Name is: " + Name
+ "\nOwnerID is: " + OwnerID
+ "\nWeight is: " + Weight
+ "\nPurchase Price is: " + PurchasePrice
+ "\nIs Vaccinated is: " + IsVaccinated