initial commit

This commit is contained in:
2021-08-05 16:19:53 +08:00
commit 569c0a733f
71 changed files with 2111 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using Gallery.Util.Model;
namespace Gallery.Util.Interface
{
public interface IGallerySource
{
string GetCookie();
GalleryItem[] GetRecentItems(int page);
}
}