aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/BaseItemProvider.cs
diff options
context:
space:
mode:
authorJPVenson <6794763+JPVenson@users.noreply.github.com>2024-10-08 13:18:48 +0000
committerJPVenson <6794763+JPVenson@users.noreply.github.com>2024-10-08 13:18:48 +0000
commitd5409a26ea9eb8b7e149c62b6a1a9293726f4be2 (patch)
tree13d2d75f027bb522201fa8008ab421e55330d8f7 /Jellyfin.Data/Entities/BaseItemProvider.cs
parent6c819fe516ba742f1dcc77d61f6eedbe987cd692 (diff)
WIP Search refactoring and Provider ID refactoring
Diffstat (limited to 'Jellyfin.Data/Entities/BaseItemProvider.cs')
-rw-r--r--Jellyfin.Data/Entities/BaseItemProvider.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jellyfin.Data/Entities/BaseItemProvider.cs b/Jellyfin.Data/Entities/BaseItemProvider.cs
new file mode 100644
index 000000000..6f8e1c39b
--- /dev/null
+++ b/Jellyfin.Data/Entities/BaseItemProvider.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace Jellyfin.Data.Entities;
+
+public class BaseItemProvider
+{
+ public Guid ItemId { get; set; }
+ public required BaseItem Item { get; set; }
+
+ public string ProviderId { get; set; }
+ public string ProviderValue { get; set; }
+}