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

22 lines
365 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; }
2020-05-25 17:00:38 +01:00
object? Body { get; set; }
2020-05-01 19:05:28 +01:00
}
}