using Ombi.Api.RottenTomatoes.Models; using System; using System.Linq; using System.Net.Http; using System.Threading.Tasks; namespace Ombi.Api.RottenTomatoes { public interface IRottenTomatoesApi { Task GetMovieRatings(string movieName, int movieYear); Task GetTvRatings(string showName, int showYear); } }