Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IRequest.cs
2020-05-02 13:04:26 +02:00

22 lines
364 B
C#

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; }
}
}