浏览代码

change userid type to guid

Claus Vium 6 年之前
父节点
当前提交
07e7b13b75
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      MediaBrowser.Model/Devices/DeviceQuery.cs

+ 3 - 1
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; }
     }
 }