File: IAppLinkEntry.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System;
using System.Collections.Generic;
 
namespace Microsoft.Maui.Controls
{
	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; }
	}
}