summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IAppLinkEntry.cs
blob: b9a77a51367ccea2b2bd6ec9f3290e7f4a0c16f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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; }
	}
}