Spotify.NET/SpotifyAPI/SpoitfyLocalAPI/CFID.cs

28 lines
644 B
C#
Raw Normal View History

2014-01-07 15:26:03 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SpotifyAPI.SpotifyLocalAPI
2014-01-07 15:26:03 +00:00
{
2014-02-13 13:23:52 +00:00
/// <summary>
/// JSON Response, used internaly
/// </summary>
2014-01-07 15:26:03 +00:00
class CFID
{
2014-02-01 12:52:33 +00:00
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; }
}
2014-02-13 13:23:52 +00:00
/// <summary>
/// JSON Response, used internaly
/// </summary>
2014-02-01 12:52:33 +00:00
class Error
{
public String type { get; set; }
public String message { get; set; }
2014-01-07 15:26:03 +00:00
}
}