mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 06:56:27 +00:00
9f6729ad60
Disabled examples for now
28 lines
574 B
C#
28 lines
574 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
|
|
namespace SpotifyAPI.Web.Http
|
|
{
|
|
public class Request : IRequest
|
|
{
|
|
public Request()
|
|
{
|
|
Headers = new Dictionary<string, string>();
|
|
Parameters = new Dictionary<string, string>();
|
|
}
|
|
|
|
public Uri BaseAddress { get; set; }
|
|
|
|
public Uri Endpoint { get; set; }
|
|
|
|
public IDictionary<string, string> Headers { get; set; }
|
|
|
|
public IDictionary<string, string> Parameters { get; set; }
|
|
|
|
public HttpMethod Method { get; set; }
|
|
|
|
public object Body { get; set; }
|
|
}
|
|
}
|