diff options
| author | JPVenson <github@jpb.email> | 2024-11-11 17:39:50 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2024-11-11 17:39:50 +0000 |
| commit | 508b27f15643dc04d0ca1dda92a3b18bdeb43a5a (patch) | |
| tree | e45283c63b0bd16d3e1cc8eed9c3e765a995fbf7 /Jellyfin.Data | |
| parent | bdab5e549eb158a9a58161e73cd0ef988ae37599 (diff) | |
Fixed Duplicate returns on grouping
Fixed UserDataKey not stored
Diffstat (limited to 'Jellyfin.Data')
| -rw-r--r-- | Jellyfin.Data/Entities/UserData.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Jellyfin.Data/Entities/UserData.cs b/Jellyfin.Data/Entities/UserData.cs index fe8c8c5ce..05ab6dd2d 100644 --- a/Jellyfin.Data/Entities/UserData.cs +++ b/Jellyfin.Data/Entities/UserData.cs @@ -9,6 +9,12 @@ namespace Jellyfin.Data.Entities; public class UserData { /// <summary> + /// Gets or sets the custom data key. + /// </summary> + /// <value>The rating.</value> + public required string CustomDataKey { get; set; } + + /// <summary> /// Gets or sets the users 0-10 rating. /// </summary> /// <value>The rating.</value> |
