aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/NotificationsService.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.Api/NotificationsService.cs
parent40ee886f2ed66d93eb0f6464b29c6b1361a13793 (diff)
changed NotificationQuery user id to string
Diffstat (limited to 'MediaBrowser.Api/NotificationsService.cs')
-rw-r--r--MediaBrowser.Api/NotificationsService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/NotificationsService.cs b/MediaBrowser.Api/NotificationsService.cs
index 6b39b3c48..2d1ecc231 100644
--- a/MediaBrowser.Api/NotificationsService.cs
+++ b/MediaBrowser.Api/NotificationsService.cs
@@ -13,7 +13,7 @@ namespace MediaBrowser.Api
public class GetNotifications : IReturn<NotificationResult>
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
- public Guid UserId { get; set; }
+ public string UserId { get; set; }
[ApiMember(Name = "IsRead", Description = "An optional filter by IsRead", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsRead { get; set; }