mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
17 lines
280 B
C#
17 lines
280 B
C#
|
using System.Collections.Generic;
|
||
|
using System.Net;
|
||
|
|
||
|
namespace SpotifyAPI.Web.Http
|
||
|
{
|
||
|
public interface IResponse
|
||
|
{
|
||
|
object Body { get; }
|
||
|
|
||
|
IReadOnlyDictionary<string, string> Headers { get; }
|
||
|
|
||
|
HttpStatusCode StatusCode { get; }
|
||
|
|
||
|
string ContentType { get; }
|
||
|
}
|
||
|
}
|