mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
17 lines
282 B
C#
17 lines
282 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; }
|
|
}
|
|
}
|