20 строки
338 B
C#
20 строки
338 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|