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 GetRecentItemsAsync(int page) { throw new NotImplementedException(); } public void SetCookie() { throw new NotImplementedException(); } } }