2016-07-07 20:23:36 +01:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class ResponseInfo
|
|
|
|
|
{
|
|
|
|
|
public WebHeaderCollection Headers { get; set; }
|
2016-07-07 20:38:07 +01:00
|
|
|
|
|
|
|
|
|
public static readonly ResponseInfo Empty = new ResponseInfo();
|
2016-07-07 20:23:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|