aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Devices/DeviceQuery.cs
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-01-02 13:15:11 -0500
committerGitHub <noreply@github.com>2019-01-02 13:15:11 -0500
commit0cafd7dfefe07bf8e1d997c384561707e1b22c6a (patch)
treeee8cccc0198c35879319e6a5507a007da9f5c8e6 /MediaBrowser.Model/Devices/DeviceQuery.cs
parent8e7a88335d7c6ce4a13328e52de0b549ed3ad788 (diff)
parent1d6987c7131c36fa50c8f85ab140038b71eaf83c (diff)
Merge pull request #361 from cvium/fix_userid_type
DeviceQuery: change UserId to GUID
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; }
}
}