mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
22 lines
364 B
C#
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; }
|
||
|
}
|
||
|
}
|