using System;
public class Program
{
public static void Main()
new Exercise().RunSolution();
Console.WriteLine("Hello and good luck on your interview!");
}
/// <summary>
/// Objective: fetch and display all of J.K. Rowling's books using google books api
/// google books documentation - https://developers.google.com/books/docs/v1/using#WorkingVolumes
///
/// Instructions:
/// Create a C# Class to deserialize the json into
/// Send a request to google books api search for J.K. Rowling as the author
/// print out to the console each book's:
/// -title
/// -number of pages
/// -if it is epublished
/// -its average rating
/// </summary>
public class Exercise
public void RunSolution()
// Code solution here...