|
| 1 | +using Newtonsoft.Json; |
| 2 | + |
| 3 | +namespace SpotifyAPI.Web.Models |
| 4 | +{ |
| 5 | + public class AnalysisTrack |
| 6 | + { |
| 7 | + [JsonProperty("num_samples")] |
| 8 | + public int NumSamples { get; set; } |
| 9 | + |
| 10 | + [JsonProperty("duration")] |
| 11 | + public double Duration { get; set; } |
| 12 | + |
| 13 | + [JsonProperty("sample_md5")] |
| 14 | + public string SampleMD5 { get; set; } |
| 15 | + |
| 16 | + [JsonProperty("offset_seconds")] |
| 17 | + public double OffsetSeconds { get; set; } |
| 18 | + |
| 19 | + [JsonProperty("window_seconds")] |
| 20 | + public double WindowSeconds { get; set; } |
| 21 | + |
| 22 | + [JsonProperty("analysis_sample_rate")] |
| 23 | + public int AnalysisSampleRate { get; set; } |
| 24 | + |
| 25 | + [JsonProperty("analysis_channels")] |
| 26 | + public int AnalysisChannels { get; set; } |
| 27 | + |
| 28 | + [JsonProperty("end_of_fade_in")] |
| 29 | + public double EndOfFadeIn { get; set; } |
| 30 | + |
| 31 | + [JsonProperty("start_of_fade_out")] |
| 32 | + public double StartOfFadeOut { get; set; } |
| 33 | + |
| 34 | + [JsonProperty("loudness")] |
| 35 | + public double Loudness { get; set; } |
| 36 | + |
| 37 | + [JsonProperty("tempo")] |
| 38 | + public double Tempo { get; set; } |
| 39 | + |
| 40 | + [JsonProperty("tempo_confidence")] |
| 41 | + public double TempoConfidence { get; set; } |
| 42 | + |
| 43 | + [JsonProperty("time_signature")] |
| 44 | + public double TimeSignature { get; set; } |
| 45 | + |
| 46 | + [JsonProperty("time_signature_confidence")] |
| 47 | + public double TimeSignatureConfidence { get; set; } |
| 48 | + |
| 49 | + [JsonProperty("key")] |
| 50 | + public int Key { get; set; } |
| 51 | + |
| 52 | + [JsonProperty("key_confidence")] |
| 53 | + public double KeyConfidence { get; set; } |
| 54 | + |
| 55 | + [JsonProperty("mode")] |
| 56 | + public int Mode { get; set; } |
| 57 | + |
| 58 | + [JsonProperty("mode_confidence")] |
| 59 | + public double ModeConfidence { get; set; } |
| 60 | + |
| 61 | + [JsonProperty("codestring")] |
| 62 | + public string Codestring { get; set; } |
| 63 | + |
| 64 | + [JsonProperty("code_version")] |
| 65 | + public double CodeVersion { get; set; } |
| 66 | + |
| 67 | + [JsonProperty("echoprintstring")] |
| 68 | + public string Echoprintstring { get; set; } |
| 69 | + |
| 70 | + [JsonProperty("echoprint_version")] |
| 71 | + public double EchoprintVersion { get; set; } |
| 72 | + |
| 73 | + [JsonProperty("synchstring")] |
| 74 | + public string Synchstring { get; set; } |
| 75 | + |
| 76 | + [JsonProperty("synch_version")] |
| 77 | + public double SynchVersion { get; set; } |
| 78 | + |
| 79 | + [JsonProperty("rhythmstring")] |
| 80 | + public string Rhythmstring { get; set; } |
| 81 | + |
| 82 | + [JsonProperty("rhythm_version")] |
| 83 | + public double RhythmVersion { get; set; } |
| 84 | + |
| 85 | + } |
| 86 | +} |
0 commit comments