aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Libraries/CustomItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/Libraries/CustomItem.cs')
-rw-r--r--Jellyfin.Data/Entities/Libraries/CustomItem.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/Jellyfin.Data/Entities/Libraries/CustomItem.cs b/Jellyfin.Data/Entities/Libraries/CustomItem.cs
deleted file mode 100644
index e27d01d86..000000000
--- a/Jellyfin.Data/Entities/Libraries/CustomItem.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System.Collections.Generic;
-using Jellyfin.Data.Interfaces;
-
-namespace Jellyfin.Data.Entities.Libraries
-{
- /// <summary>
- /// An entity representing a custom item.
- /// </summary>
- public class CustomItem : LibraryItem, IHasReleases
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="CustomItem"/> class.
- /// </summary>
- /// <param name="library">The library.</param>
- public CustomItem(Library library) : base(library)
- {
- CustomItemMetadata = new HashSet<CustomItemMetadata>();
- Releases = new HashSet<Release>();
- }
-
- /// <summary>
- /// Gets a collection containing the metadata for this item.
- /// </summary>
- public virtual ICollection<CustomItemMetadata> CustomItemMetadata { get; private set; }
-
- /// <inheritdoc />
- public virtual ICollection<Release> Releases { get; private set; }
- }
-}