piwigodotnet/PiwigoDotnet/Piwigo.Client/IImageApi.cs

11 lines
396 B
C#
Raw Normal View History

using Piwigo.Client.Contract;
namespace Piwigo.Client;
public interface IImageApi
{
2022-10-22 20:24:12 +02:00
Task AddChunkAsync(byte[] data, string originalSum, int position, CancellationToken cancellationToken = default);
Task<PagedImages> GetImages(int albumId, bool recursive, PagingInfo page, ImageFilter filter, ImageOrder order = ImageOrder.Name,
CancellationToken cancellationToken = default);
}