aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Devices/DeviceQuery.cs
diff options
context:
space:
mode:
authorAnthony Lavado <anthonylavado@users.noreply.github.com>2019-01-02 14:02:48 -0500
committerGitHub <noreply@github.com>2019-01-02 14:02:48 -0500
commita06a5c8d18badb73df64cb09a3ab677922379823 (patch)
tree3ae3c19fc2bb822a81c57f948043c67ea68dbd95 /MediaBrowser.Model/Devices/DeviceQuery.cs
parente12888c2c5288ab2e313d74b6fad01a82720f4e2 (diff)
parent0cafd7dfefe07bf8e1d997c384561707e1b22c6a (diff)
Merge branch 'dev' into project-updates
Diffstat (limited to 'MediaBrowser.Model/Devices/DeviceQuery.cs')
-rw-r--r--MediaBrowser.Model/Devices/DeviceQuery.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Devices/DeviceQuery.cs b/MediaBrowser.Model/Devices/DeviceQuery.cs
index 9ceea1ea8..fa2e11d4d 100644
--- a/MediaBrowser.Model/Devices/DeviceQuery.cs
+++ b/MediaBrowser.Model/Devices/DeviceQuery.cs
@@ -1,4 +1,6 @@

+using System;
+
namespace MediaBrowser.Model.Devices
{
public class DeviceQuery
@@ -17,6 +19,6 @@ namespace MediaBrowser.Model.Devices
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
- public string UserId { get; set; }
+ public Guid UserId { get; set; }
}
}