mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
acb213e4b8
- Documents all library entities - Fixes styling warnings for library entities - Updates library entities to inherit from interfaces - Makes library entites no longer partial.
29 lines
877 B
C#
29 lines
877 B
C#
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>
|
|
public CustomItem()
|
|
{
|
|
CustomItemMetadata = new HashSet<CustomItemMetadata>();
|
|
Releases = new HashSet<Release>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a collection containing the metadata for this item.
|
|
/// </summary>
|
|
public virtual ICollection<CustomItemMetadata> CustomItemMetadata { get; protected set; }
|
|
|
|
/// <inheritdoc />
|
|
public virtual ICollection<Release> Releases { get; protected set; }
|
|
}
|
|
}
|