Spotify.NET/SpotifyAPI.Web/Http/Response.cs
2024-02-10 11:42:55 +01:00

25 lines
567 B
C#

using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Net;
namespace SpotifyAPI.Web.Http
{
public class Response : IResponse
{
public Response(IDictionary<string, string> headers)
{
Ensure.ArgumentNotNull(headers, nameof(headers));
Headers = new ReadOnlyDictionary<string, string>(headers);
}
public object? Body { get; set; }
public IReadOnlyDictionary<string, string> Headers { get; set; }
public HttpStatusCode StatusCode { get; set; }
public string? ContentType { get; set; }
}
}