Files
nadekobot/src/NadekoBot/Modules/Nsfw/Common/Downloaders/IImageDownloader.cs
2021-10-21 23:35:58 +00:00

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);
}
}