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