mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
15 lines
326 B
C#
15 lines
326 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class CursorPaging<T>
|
|
{
|
|
public string Href { get; set; }
|
|
public List<T> Items { get; set; }
|
|
public int Limit { get; set; }
|
|
public string Next { get; set; }
|
|
public Cursor Cursors { get; set; }
|
|
public int Total { get; set; }
|
|
}
|
|
}
|