From 53450bd514eec97d58eb18b8a01feab36475826b Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 6 Jul 2013 17:23:32 -0400 Subject: added a notifications service --- .../Notifications/NotificationUpdateEventArgs.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs (limited to 'MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs') 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; } + } +} -- cgit v1.2.3