You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
#pragma warning disable CA2227
|
|
|
|
using System.Collections.Generic;
|
|
using Jellyfin.Data.Interfaces;
|
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
|
{
|
|
/// <summary>
|
|
/// An entity representing an episode.
|
|
/// </summary>
|
|
public class Episode : LibraryItem, IHasReleases
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Episode"/> class.
|
|
/// </summary>
|
|
/// <param name="library">The library.</param>
|
|
public Episode(Library library) : base(library)
|
|
{
|
|
Releases = new HashSet<Release>();
|
|
EpisodeMetadata = new HashSet<EpisodeMetadata>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the episode number.
|
|
/// </summary>
|
|
public int? EpisodeNumber { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public virtual ICollection<Release> Releases { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a collection containing the metadata for this episode.
|
|
/// </summary>
|
|
public virtual ICollection<EpisodeMetadata> EpisodeMetadata { get; protected set; }
|
|
}
|
|
}
|