mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
a27c3729c8
* add top tracks & artists endpoints * fix file extenstion * added TODO * Add Methods to interface * Add Top items query class * implement query into UserProfileClient.cs - Top Requests * Tidy Up Naming * Removed random json file change * Added Tests. * run formatter * remove additional namespace --------- Co-authored-by: Jonas Dellinger <jonas@dellinger.dev>
17 lines
441 B
C#
17 lines
441 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class UsersTopArtistsResponse
|
|
{
|
|
public string Href { get; set; } = default!;
|
|
public int Limit { get; set; }
|
|
public string Next { get; set; } = default!;
|
|
public int Offset { get; set; }
|
|
public string Previous { get; set; } = default!;
|
|
public int Total { get; set; } = default!;
|
|
public List<FullArtist> Items { get; set; } = default!;
|
|
}
|
|
}
|
|
|