summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IAppLinkEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IAppLinkEntry.cs')
-rw-r--r--Xamarin.Forms.Core/IAppLinkEntry.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IAppLinkEntry.cs b/Xamarin.Forms.Core/IAppLinkEntry.cs
new file mode 100644
index 00000000..b9a77a51
--- /dev/null
+++ b/Xamarin.Forms.Core/IAppLinkEntry.cs
@@ -0,0 +1,20 @@
+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<string, string> KeyValues { get; }
+
+ ImageSource Thumbnail { get; set; }
+
+ string Title { get; set; }
+ }
+} \ No newline at end of file