aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/LinkedChildEntity.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-05-04 21:26:26 +0200
committerShadowghost <Ghost_of_Stone@web.de>2026-05-04 21:26:26 +0200
commit57c0fcd674c659c658369f0aebfd5d9d6787a9d4 (patch)
tree7aff23d6f54e913a6a34cb5a2568a07298582444 /src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/LinkedChildEntity.cs
parent68ab58589444091925c15ad20d36f935b7bc2e21 (diff)
parentec04313317bed62728b059108cd232e9744f6354 (diff)
Merge remote-tracking branch 'upstream/master' into epg-fixes
Diffstat (limited to 'src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/LinkedChildEntity.cs')
-rw-r--r--src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/LinkedChildEntity.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/LinkedChildEntity.cs b/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/LinkedChildEntity.cs
new file mode 100644
index 0000000000..7361775711
--- /dev/null
+++ b/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/LinkedChildEntity.cs
@@ -0,0 +1,39 @@
+using System;
+
+namespace Jellyfin.Database.Implementations.Entities;
+
+/// <summary>
+/// Represents a linked child relationship between items (e.g., BoxSet to Movies, Playlist to tracks).
+/// </summary>
+public class LinkedChildEntity
+{
+ /// <summary>
+ /// Gets or sets the parent item ID (BoxSet, Playlist, etc.).
+ /// </summary>
+ public required Guid ParentId { get; set; }
+
+ /// <summary>
+ /// Gets or sets the child item ID.
+ /// </summary>
+ public required Guid ChildId { get; set; }
+
+ /// <summary>
+ /// Gets or sets the type of linked child (Manual or Shortcut).
+ /// </summary>
+ public required LinkedChildType ChildType { get; set; }
+
+ /// <summary>
+ /// Gets or sets the sort order.
+ /// </summary>
+ public int? SortOrder { get; set; }
+
+ /// <summary>
+ /// Gets or sets the parent item navigation property.
+ /// </summary>
+ public BaseItemEntity? Parent { get; set; }
+
+ /// <summary>
+ /// Gets or sets the child item navigation property.
+ /// </summary>
+ public BaseItemEntity? Child { get; set; }
+}