summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IAppLinks.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IAppLinks.cs')
-rw-r--r--Xamarin.Forms.Core/IAppLinks.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IAppLinks.cs b/Xamarin.Forms.Core/IAppLinks.cs
new file mode 100644
index 00000000..9dbcf466
--- /dev/null
+++ b/Xamarin.Forms.Core/IAppLinks.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace Xamarin.Forms
+{
+ public interface IAppLinks
+ {
+ void DeregisterLink(IAppLinkEntry appLink);
+ void DeregisterLink(Uri appLinkUri);
+ void RegisterLink(IAppLinkEntry appLink);
+ }
+} \ No newline at end of file