Spotify.NET/SpotifyAPI/SpoitfyLocalAPI/CFID.cs
Johnny @PC 0b78f12df3 Added support for Spotify's Web API
- New Namespaces
   -> SpotifyAPI.SpotifyLocalAPI
   -> SpotifyAPI.SpotifyWebAPI
   -> SpotifyAPI.SpotifyWebAPI.Models
- Wiki created, examples coming soon
- Added example for the new Web API
- README updated
2014-07-20 22:42:46 +02:00

28 lines
644 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SpotifyAPI.SpotifyLocalAPI
{
/// <summary>
/// JSON Response, used internaly
/// </summary>
class CFID
{
public Error error { get; set; }
public String token { get; set; }
public String version { get; set; }
public String client_version { get; set; }
public Boolean running { get; set; }
}
/// <summary>
/// JSON Response, used internaly
/// </summary>
class Error
{
public String type { get; set; }
public String message { get; set; }
}
}