Spotify.NET/SpotifyAPI/Web/Models/ResponseInfo.cs

11 lines
229 B
C#
Raw Normal View History

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