Spotify.NET/SpotifyAPI.Web/Models/Response/CursorPaging.cs

26 lines
740 B
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class CursorPaging<T> : IPaginatable<T>
{
public string Href { get; set; } = default!;
public List<T>? Items { get; set; } = default!;
public int Limit { get; set; }
public string? Next { get; set; } = default!;
public Cursor Cursors { get; set; } = default!;
public int Total { get; set; }
}
public class CursorPaging<T, TNext> : IPaginatable<T, TNext>
2020-05-04 22:02:53 +01:00
{
2020-05-25 17:00:38 +01:00
public string Href { get; set; } = default!;
public List<T>? Items { get; set; } = default!;
public int Limit { get; set; }
public string? Next { get; set; } = default!;
2020-05-25 17:00:38 +01:00
public Cursor Cursors { get; set; } = default!;
public int Total { get; set; }
2020-05-04 22:02:53 +01:00
}
}
2020-05-25 17:00:38 +01:00