Removing Tizen.Xamarin.Forms.Extensions
[profile/tv/apps/dotnet/mediahub.git] / TVMediaHub / TVMediaHub.Tizen / Extensions / IToast.cs
1 namespace Tizen.Xamarin.Forms.Extension
2 {
3     /// <summary>
4     /// This interface, which defines the ability to display simple text, is used internally.
5     /// </summary>
6     internal interface IToast
7     {
8         /// <summary>
9         /// Gets or sets the duration.
10         /// </summary>
11         int Duration { get; set; }
12
13         /// <summary>
14         /// Gets or sets the text.
15         /// </summary>
16         string Text { get; set; }
17
18         /// <summary>
19         /// Shows the view for the specified duration.
20         /// </summary>
21         void Show();
22
23         /// <summary>
24         /// Dismisses the specified view.
25         /// </summary>
26         void Dismiss();
27     }
28 }