From 07e7b13b75288e52f71f0ab171b86e14a4229d04 Mon Sep 17 00:00:00 2001 From: Claus Vium Date: Wed, 2 Jan 2019 10:55:05 +0100 Subject: [PATCH] change userid type to guid --- MediaBrowser.Model/Devices/DeviceQuery.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MediaBrowser.Model/Devices/DeviceQuery.cs b/MediaBrowser.Model/Devices/DeviceQuery.cs index 9ceea1ea8f..fa2e11d4d8 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. /// /// The user identifier. - public string UserId { get; set; } + public Guid UserId { get; set; } } }