2020-09-01 15:36:45 +00:00
|
|
|
#pragma warning disable CA2227
|
|
|
|
|
2019-06-01 20:40:01 +00:00
|
|
|
using System.Collections.Generic;
|
2020-08-30 22:50:54 +00:00
|
|
|
using Jellyfin.Data.Interfaces;
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-29 17:30:09 +00:00
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An entity representing a custom item.
|
|
|
|
/// </summary>
|
|
|
|
public class CustomItem : LibraryItem, IHasReleases
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Initializes a new instance of the <see cref="CustomItem"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2021-03-06 21:17:19 +00:00
|
|
|
/// <param name="library">The library.</param>
|
|
|
|
public CustomItem(Library library) : base(library)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
CustomItemMetadata = new HashSet<CustomItemMetadata>();
|
|
|
|
Releases = new HashSet<Release>();
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets a collection containing the metadata for this item.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
public virtual ICollection<CustomItemMetadata> CustomItemMetadata { get; protected set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-02 21:56:05 +00:00
|
|
|
public virtual ICollection<Release> Releases { get; protected set; }
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|