|
| 1 | +namespace SpotifyAPI.Web |
| 2 | +{ |
| 3 | + public class TrackAudio |
| 4 | + { |
| 5 | + public float Duration { get; set; } |
| 6 | + public string SampleMd5 { get; set; } = default!; |
| 7 | + public int OffsetSeconds { get; set; } |
| 8 | + public int WindowSeconds { get; set; } |
| 9 | + public int AnalysisSampleRate { get; set; } |
| 10 | + public int AnalysisChannels { get; set; } |
| 11 | + public float EndOfFadeIn { get; set; } |
| 12 | + public float StartOfFadeOut { get; set; } |
| 13 | + public float Loudness { get; set; } |
| 14 | + public float Tempo { get; set; } |
| 15 | + public float TempConfidence { get; set; } |
| 16 | + public int TimeSignature { get; set; } |
| 17 | + public float TimeSignatureConfidence { get; set; } |
| 18 | + public int Key { get; set; } |
| 19 | + public float KeyConfidence { get; set; } |
| 20 | + public int Mode { get; set; } |
| 21 | + public float ModeConfidence { get; set; } |
| 22 | + public string Codestring { get; set; } = default!; |
| 23 | + public float CodeVersion { get; set; } |
| 24 | + public string Echoprintstring { get; set; } = default!; |
| 25 | + public float EchoprintVersion { get; set; } |
| 26 | + public string Synchstring { get; set; } = default!; |
| 27 | + public float SynchVersion { get; set; } |
| 28 | + public string Rhythmstring { get; set; } = default!; |
| 29 | + public float RhythmVersion { get; set; } |
| 30 | + } |
| 31 | +} |
0 commit comments