mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
0b78f12df3
- New Namespaces -> SpotifyAPI.SpotifyLocalAPI -> SpotifyAPI.SpotifyWebAPI -> SpotifyAPI.SpotifyWebAPI.Models - Wiki created, examples coming soon - Added example for the new Web API - README updated
28 lines
644 B
C#
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; }
|
|
}
|
|
}
|