Request information about movie from IMDB.
using System.Collections.Generic;
namespace MovieNavigator.Core
{
public class MoviesResponse
{
public List<Movie> Items { get; set; }
public int TotalResults { get; set; }
public string Response { get; set; }
public string ResponseMessage { get; set; }
}
}