mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
14 lines
342 B
C#
14 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using SpotifyAPI.Web.Http;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public interface IPaginator
|
|
{
|
|
Task<List<T>> Paginate<T>(Paging<T> firstPage, IAPIConnector connector);
|
|
Task<List<T>> Paginate<T>(Func<Task<Paging<T>>> getFirstPage, IAPIConnector connector);
|
|
}
|
|
}
|