aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-15 21:33:47 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-15 21:33:47 -0400
commitb1576d7faf1849f11c0fae9d3618359dfc190a18 (patch)
treee17acf39f44c0b049f1779ba5a765984d8fa595c /MediaBrowser.Model/Notifications/NotificationQuery.cs
parent40ee886f2ed66d93eb0f6464b29c6b1361a13793 (diff)
changed NotificationQuery user id to string
Diffstat (limited to 'MediaBrowser.Model/Notifications/NotificationQuery.cs')
-rw-r--r--MediaBrowser.Model/Notifications/NotificationQuery.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationQuery.cs b/MediaBrowser.Model/Notifications/NotificationQuery.cs
index a252e2512..7e8814d7a 100644
--- a/MediaBrowser.Model/Notifications/NotificationQuery.cs
+++ b/MediaBrowser.Model/Notifications/NotificationQuery.cs
@@ -1,10 +1,9 @@
-using System;
-
+
namespace MediaBrowser.Model.Notifications
{
public class NotificationQuery
{
- public Guid UserId { get; set; }
+ public string UserId { get; set; }
public bool? IsRead { get; set; }