Removing Tizen.Xamarin.Forms.Extensions
[profile/tv/apps/dotnet/mediahub.git] / TVMediaHub / TVMediaHub.Tizen / Extensions / ContextPopupDirectionPriorities.cs
1 namespace Tizen.Xamarin.Forms.Extension
2 {
3     /// <summary>
4     /// The direction priorities of a ContextPopup.
5     /// </summary>
6     public struct ContextPopupDirectionPriorities
7     {
8         /// <summary>
9         /// Creates a ContextPopupDirectionPriorities structure.
10         /// </summary>
11         /// <param name="first">The first direction priority.</param>
12         /// <param name="second">The second direction priority.</param>
13         /// <param name="third">The third direction priority.</param>
14         /// <param name="fourth">The fourth direction priority.</param>
15         public ContextPopupDirectionPriorities(ContextPopupDirection first, ContextPopupDirection second, ContextPopupDirection third, ContextPopupDirection fourth)
16         {
17             First = first;
18             Second = second;
19             Third = third;
20             Fourth = fourth;
21         }
22
23         /// <summary>
24         /// Gets the first direction priority.
25         /// </summary>
26         public ContextPopupDirection First { get; private set; }
27
28         /// <summary>
29         /// Gets the second direction priority.
30         /// </summary>
31         public ContextPopupDirection Second { get; private set; }
32
33         /// <summary>
34         /// Gets the third direction priority.
35         /// </summary>
36         public ContextPopupDirection Third { get; private set; }
37
38         /// <summary>
39         /// Gets the fourth direction priority.
40         /// </summary>
41         public ContextPopupDirection Fourth { get; private set; }
42     }
43 }