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
27 lines
847 B
C#
27 lines
847 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.SpotifyLocalAPI
|
|
{
|
|
public class StatusResponse
|
|
{
|
|
//All information got from the JSON Response
|
|
public int version { get; set; }
|
|
public string client_version { get; set; }
|
|
public bool playing { get; set; }
|
|
public bool shuffle { get; set; }
|
|
public bool repeat { get; set; }
|
|
public bool play_enabled { get; set; }
|
|
public bool prev_enabled { get; set; }
|
|
public bool next_enabled { get; set; }
|
|
public Track track { get; set; }
|
|
public double playing_position { get; set; }
|
|
public int server_time { get; set; }
|
|
public double volume { get; set; }
|
|
public bool online { get; set; }
|
|
public bool running { get; set; }
|
|
}
|
|
}
|