Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IResponse.cs
2020-05-01 20:05:28 +02:00

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; }
}
}