using System; using System.Collections.Generic; namespace Xamarin.Forms { public interface IAppLinkEntry { Uri AppLinkUri { get; set; } string Description { get; set; } bool IsLinkActive { get; set; } IDictionary KeyValues { get; } ImageSource Thumbnail { get; set; } string Title { get; set; } } }