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

55 lines
1.6 KiB
C#
Raw Normal View History

2020-09-01 11:36:45 -04:00
#pragma warning disable CA2227
using System;
using System.Collections.Generic;
using Jellyfin.Data.Interfaces;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing an episode.
/// </summary>
public class Episode : LibraryItem, IHasReleases
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Episode"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="season">The season.</param>
public Episode(Season season)
2020-05-02 17:56:05 -04:00
{
if (season == null)
{
throw new ArgumentNullException(nameof(season));
}
season.Episodes.Add(this);
2020-05-02 17:56:05 -04:00
Releases = new HashSet<Release>();
EpisodeMetadata = new HashSet<EpisodeMetadata>();
}
/// <summary>
/// Initializes a new instance of the <see cref="Episode"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </remarks>
protected Episode()
2020-05-02 17:56:05 -04:00
{
}
/// <summary>
/// Gets or sets the episode number.
2020-05-02 17:56:05 -04:00
/// </summary>
public int? EpisodeNumber { get; set; }
2020-05-02 17:56:05 -04:00
/// <inheritdoc />
public virtual ICollection<Release> Releases { get; protected set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets a collection containing the metadata for this episode.
2020-05-02 17:56:05 -04:00
/// </summary>
public virtual ICollection<EpisodeMetadata> EpisodeMetadata { get; protected set; }
}
}