mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
13 lines
285 B
C#
13 lines
285 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();
|
|
}
|
|
} |