aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-25 16:15:50 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-25 16:15:50 -0400
commit547291f04865f23090986667b5a802cd89ea003d (patch)
treeff2e4c105979fea94390af6c3614193a0d2a9dc5 /MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
parenteda8159b4408c4b33cbdd56e3e6ed2f82757bb0c (diff)
rework notifications infrastructure
Diffstat (limited to 'MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs')
-rw-r--r--MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs b/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
index e156ca26a..d8a6634df 100644
--- a/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
+++ b/MediaBrowser.Controller/Notifications/NotificationUpdateEventArgs.cs
@@ -10,8 +10,8 @@ namespace MediaBrowser.Controller.Notifications
public class NotificationReadEventArgs : EventArgs
{
- public Guid[] IdList { get; set; }
- public Guid UserId { get; set; }
+ public string[] IdList { get; set; }
+ public string UserId { get; set; }
public bool IsRead { get; set; }
}
}