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