using System; using System.Collections.Generic; using System.Net.Http; namespace SpotifyAPI.Web.Http { public interface IRequest { Uri BaseAddress { get; } Uri Endpoint { get; } IDictionary Headers { get; } IDictionary Parameters { get; } HttpMethod Method { get; } object Body { get; set; } } }