forked from JohnnyCrazy/SpotifyAPI-NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCFID.cs
More file actions
27 lines (26 loc) · 644 Bytes
/
CFID.cs
File metadata and controls
27 lines (26 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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; }
}
}