mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
28 lines
653 B
C#
28 lines
653 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class AnalysisMeta
|
|
{
|
|
[JsonProperty("analyzer_version")]
|
|
public string AnalyzerVersion { get; set; }
|
|
|
|
[JsonProperty("platform")]
|
|
public string Platform { get; set; }
|
|
|
|
[JsonProperty("status_code")]
|
|
public int StatusCode { get; set; }
|
|
|
|
[JsonProperty("detailed_status")]
|
|
public string DetailedStatus { get; set; }
|
|
|
|
[JsonProperty("timestamp")]
|
|
public long Timestamp { get; set; }
|
|
|
|
[JsonProperty("analysis_time")]
|
|
public double AnalysisTime { get; set; }
|
|
|
|
[JsonProperty("input_process")]
|
|
public string InputProcess { get; set; }
|
|
}
|
|
} |