mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 15:48:03 +00:00
* a * acceleration * addition * altogether * api clients * artist * associated * bandwidth * cannot * capabilities * case-insensitive * case-sensitive * configuration * delimiter * dependent * diacritics * directors * enable * explicitly * filters * finish * have * hierarchy * implicit * include * information * into * its * keepalive * localization * macos * manual * matching * metadata * nonexistent * options * overridden * parsed * parser * playback * preferring * processes * processing * provider * ratings * retrieval * running * segments * separate * should * station * subdirectories * superseded * supported * system * than * the * throws * transpose * valid * was link: forum or chat rooms Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
|
{
|
|
/// <summary>
|
|
/// An entity representing a series.
|
|
/// </summary>
|
|
public class Series : LibraryItem
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Series"/> class.
|
|
/// </summary>
|
|
/// <param name="library">The library.</param>
|
|
public Series(Library library) : base(library)
|
|
{
|
|
Seasons = new HashSet<Season>();
|
|
SeriesMetadata = new HashSet<SeriesMetadata>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the days of week.
|
|
/// </summary>
|
|
public DayOfWeek? AirsDayOfWeek { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the time the show airs, ignore the date portion.
|
|
/// </summary>
|
|
public DateTimeOffset? AirsTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the date the series first aired.
|
|
/// </summary>
|
|
public DateTime? FirstAired { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets a collection containing the series metadata.
|
|
/// </summary>
|
|
public virtual ICollection<SeriesMetadata> SeriesMetadata { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Gets a collection containing the seasons.
|
|
/// </summary>
|
|
public virtual ICollection<Season> Seasons { get; private set; }
|
|
}
|
|
}
|