mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
16 lines
442 B
C#
16 lines
442 B
C#
|
using System;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class TrackMeta
|
||
|
{
|
||
|
public float AnalysisTime { get; set; }
|
||
|
public string AnalyzerVersion { get; set; } = default!;
|
||
|
public string DetailedStatus { get; set; } = default!;
|
||
|
public string InputProcess { get; set; } = default!;
|
||
|
public string Platform { get; set; } = default!;
|
||
|
public int StatusCode { get; set; } = default!;
|
||
|
public long Timestamp { get; set; }
|
||
|
}
|
||
|
}
|