mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
14 lines
427 B
C#
14 lines
427 B
C#
|
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; }
|
||
|
}
|
||
|
}
|