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

17 lines
280 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
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; }
}
}