diff options
| author | Andrew Rabert <6550543+nvllsvm@users.noreply.github.com> | 2019-01-02 13:15:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-02 13:15:11 -0500 |
| commit | 0cafd7dfefe07bf8e1d997c384561707e1b22c6a (patch) | |
| tree | ee8cccc0198c35879319e6a5507a007da9f5c8e6 /MediaBrowser.Model/Devices/DeviceQuery.cs | |
| parent | 8e7a88335d7c6ce4a13328e52de0b549ed3ad788 (diff) | |
| parent | 1d6987c7131c36fa50c8f85ab140038b71eaf83c (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.cs | 4 |
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; } } } |
