25 lines
539 B
C#
25 lines
539 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Gallery.Util.Interface;
|
|
using Gallery.Util.Model;
|
|
|
|
namespace Gallery.Danbooru
|
|
{
|
|
public class GallerySource : IGallerySource
|
|
{
|
|
public string Name => "Danbooru";
|
|
|
|
public string HomePage => "https://danbooru.donmai.us";
|
|
|
|
public Task<GalleryItem[]> GetRecentItemsAsync(int page)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SetCookie()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|