2021-08-06 17:18:18 +08:00

25 lines
533 B
C#

using System;
using System.Threading.Tasks;
using Gallery.Util.Interface;
using Gallery.Util.Model;
namespace Gallery.Gelbooru
{
public class GallerySource : IGallerySource
{
public string Name => "Gelbooru";
public string HomePage => "https://gelbooru.com";
public Task<GalleryItem[]> GetRecentItemsAsync(int page)
{
throw new NotImplementedException();
}
public void SetCookie()
{
throw new NotImplementedException();
}
}
}