diff --git a/Jellyfin.Data/Entities/Security/Device.cs b/Jellyfin.Data/Entities/Security/Device.cs
index bb192e7729..9bff7f0cff 100644
--- a/Jellyfin.Data/Entities/Security/Device.cs
+++ b/Jellyfin.Data/Entities/Security/Device.cs
@@ -13,13 +13,15 @@ namespace Jellyfin.Data.Entities.Security
/// Initializes a new instance of the class.
///
/// The user id.
+ /// The access token.
/// The app name.
/// The app version.
/// The device name.
/// The device id.
- public Device(Guid userId, string appName, string appVersion, string deviceName, string deviceId)
+ public Device(Guid userId, string accessToken, string appName, string appVersion, string deviceName, string deviceId)
{
UserId = userId;
+ AccessToken = accessToken;
AppName = appName;
AppVersion = appVersion;
DeviceName = deviceName;
@@ -43,6 +45,11 @@ namespace Jellyfin.Data.Entities.Security
///
public Guid UserId { get; private set; }
+ ///
+ /// Gets or sets the access token.
+ ///
+ public string AccessToken { get; set; }
+
///
/// Gets or sets the app name.
///