mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
341 B
C#
12 lines
341 B
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NadekoBot.Modules.Nsfw.Common
|
|
{
|
|
public interface IImageDownloader
|
|
{
|
|
Task<List<ImageData>> DownloadImageDataAsync(string[] tags, int page = 0,
|
|
bool isExplicit = false, CancellationToken cancel = default);
|
|
}
|
|
} |