Modify to inherit from EventArgs
authorMyungki Lee <mk5004.lee@samsung.com>
Thu, 27 Apr 2017 09:16:49 +0000 (18:16 +0900)
committerSon seungha <seungha.son@samsung.com>
Mon, 8 May 2017 01:23:56 +0000 (01:23 +0000)
 - NotificationEventArgs, NotificationDeleteEventArgs

Change-Id: I5eb98a54087f77ff07d74eaccaae1c17ce5b40bc
Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs
src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs

index c358c1b..48ed56c 100755 (executable)
 
 namespace Tizen.Applications.NotificationEventListener
 {
+    using System;
     /// <summary>
     /// This class provides the property to get information about the deleted notification.
     /// </summary>
-    public class NotificationDeleteEventArgs
+    public class NotificationDeleteEventArgs : EventArgs
     {
         /// <summary>
         /// Gets the unique number of the Notification.
index 541a58f..ed1b777 100755 (executable)
@@ -23,7 +23,7 @@ namespace Tizen.Applications.NotificationEventListener
     /// <summary>
     /// This class provides the methods and properties to get information about the posted or updated notification.
     /// </summary>
-    public partial class NotificationEventArgs
+    public partial class NotificationEventArgs : EventArgs
     {
         private const string LogTag = "Tizen.Applications.NotificationEventListener";