24 lines
489 B
C#
24 lines
489 B
C#
using System.Threading.Tasks;
|
|
using Gallery.Util.Model;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Gallery.Util.Interface
|
|
{
|
|
public interface IGallerySource
|
|
{
|
|
string Name { get; }
|
|
|
|
string Route { get; }
|
|
|
|
string FlyoutIconKey { get; }
|
|
|
|
string HomePage { get; }
|
|
|
|
void SetCookie();
|
|
|
|
void InitDynamicResources(string family, ResourceDictionary light, ResourceDictionary dark);
|
|
|
|
Task<GalleryItem[]> GetRecentItemsAsync(int page);
|
|
}
|
|
}
|