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 GetRecentItemsAsync(int page); } }