You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
343 B
13 lines
343 B
using RestEase;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Booru.Net
|
|
{
|
|
public interface IPHPBooruClient<T> : IDisposable
|
|
{
|
|
[Get("index.php?page=dapi&s=post&q=index&json=1")]
|
|
public Task<IReadOnlyList<T>> GetImagesAsync([Query("tags")] IEnumerable<string> tags);
|
|
}
|
|
}
|
|
|