Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IRequest.cs

22 lines
364 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
using System;
using System.Collections.Generic;
using System.Net.Http;
namespace SpotifyAPI.Web.Http
{
public interface IRequest
{
Uri BaseAddress { get; }
Uri Endpoint { get; }
IDictionary<string, string> Headers { get; }
IDictionary<string, string> Parameters { get; }
HttpMethod Method { get; }
object Body { get; set; }
}
}