using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface IPaginationService { Task> GetPageAsync(int skip = 0, int take = 32, CancellationToken token = default); } }