Release 4.0.0-preview1-00286
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.AttachPanel / Tizen.Applications.AttachPanel / StateEventArgs.cs
1 using System;
2
3 namespace Tizen.Applications.AttachPanel
4 {
5     /// <summary>
6     /// Class for event arguments of the state event
7     /// </summary>
8     public class StateEventArgs : EventArgs
9     {
10         private readonly EventType _eventType;
11
12         internal StateEventArgs(EventType eventType)
13         {
14             _eventType = eventType;
15         }
16
17         /// <summary>
18         /// Property for event type.
19         /// </summary>
20         public EventType EventType
21         {
22             get
23             {
24                 return _eventType;
25             }
26         }
27     }
28 }