jellyfin/Jellyfin.Data/Entities/Libraries/CustomItem.cs

30 lines
951 B
C#
Raw Normal View History

using System.Collections.Generic;
using Jellyfin.Data.Interfaces;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a custom item.
/// </summary>
public class CustomItem : LibraryItem, IHasReleases
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="CustomItem"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="library">The library.</param>
public CustomItem(Library library) : base(library)
2020-05-02 23:56:05 +02:00
{
CustomItemMetadata = new HashSet<CustomItemMetadata>();
Releases = new HashSet<Release>();
}
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the metadata for this item.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<CustomItemMetadata> CustomItemMetadata { get; private set; }
/// <inheritdoc />
2021-03-18 00:08:11 +01:00
public virtual ICollection<Release> Releases { get; private set; }
2020-05-02 23:56:05 +02:00
}
}