mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
28 lines
630 B
C#
28 lines
630 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SpotifyAPIv1
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|