[NUI] Change GetDefaultWindow() to static func (#900)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / IAppLinkEntry.cs
1 using System;
2 using System.Collections.Generic;
3
4 namespace Tizen.NUI.Binding
5 {
6     internal interface IAppLinkEntry
7     {
8         Uri AppLinkUri { get; set; }
9
10         string Description { get; set; }
11
12         bool IsLinkActive { get; set; }
13
14         IDictionary<string, string> KeyValues { get; }
15
16         ImageSource Thumbnail { get; set; }
17
18         string Title { get; set; }
19     }
20 }