From b1576d7faf1849f11c0fae9d3618359dfc190a18 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 15 Jul 2013 21:33:47 -0400 Subject: changed NotificationQuery user id to string --- MediaBrowser.Api/NotificationsService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Api/NotificationsService.cs') 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 { [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; } -- cgit v1.2.3