Spotify.NET/SpotifyAPI/Web/Models/ResponseInfo.cs
2016-07-07 21:38:07 +02:00

11 lines
229 B
C#

using System.Net;
namespace SpotifyAPI.Web.Models
{
public class ResponseInfo
{
public WebHeaderCollection Headers { get; set; }
public static readonly ResponseInfo Empty = new ResponseInfo();
}
}