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

17 lines
282 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
{
2020-05-25 17:00:38 +01:00
object? Body { get; }
2020-05-01 19:05:28 +01:00
IReadOnlyDictionary<string, string> Headers { get; }
HttpStatusCode StatusCode { get; }
2020-05-25 17:00:38 +01:00
string? ContentType { get; }
2020-05-01 19:05:28 +01:00
}
}