piwigodotnet/PiwigoDotnet/Piwigo.Client/IImageApi.cs

9 lines
277 B
C#
Raw Normal View History

using Piwigo.Client.Contract;
namespace Piwigo.Client;
public interface IImageApi
{
Task<PagedImages> GetImages(int albumId, bool recursive, PagingInfo page, ImageFilter filter, ImageOrder order = ImageOrder.Name,
CancellationToken cancellationToken = default);
}