forked from ddrilling/AsbCloudServer
10 lines
273 B
C#
10 lines
273 B
C#
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IPaginationService<Tdto>
|
|||
|
{
|
|||
|
Task<Data.PaginationContainer<Tdto>> GetPageAsync(int skip = 0, int take = 32, CancellationToken token = default);
|
|||
|
}
|
|||
|
}
|