aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs')
-rw-r--r--MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs b/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
deleted file mode 100644
index d8a6634df..000000000
--- a/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using MediaBrowser.Model.Notifications;
-using System;
-
-namespace MediaBrowser.Controller.Notifications
-{
- public class NotificationUpdateEventArgs : EventArgs
- {
- public Notification Notification { get; set; }
- }
-
- public class NotificationReadEventArgs : EventArgs
- {
- public string[] IdList { get; set; }
- public string UserId { get; set; }
- public bool IsRead { get; set; }
- }
-}