mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
13 lines
264 B
C#
13 lines
264 B
C#
using System.Net;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class ResponseInfo
|
|
{
|
|
public WebHeaderCollection Headers { get; set; }
|
|
|
|
public HttpStatusCode StatusCode { get; set; }
|
|
|
|
public static readonly ResponseInfo Empty = new ResponseInfo();
|
|
}
|
|
} |