2019-06-01 20:40:01 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
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 a series.
|
|
|
|
/// </summary>
|
|
|
|
public class Series : LibraryItem
|
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="Series"/> 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 Series(Library library) : base(library)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
Seasons = new HashSet<Season>();
|
2020-08-30 22:50:54 +00:00
|
|
|
SeriesMetadata = new HashSet<SeriesMetadata>();
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the days of week.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
public DayOfWeek? AirsDayOfWeek { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the time the show airs, ignore the date portion.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
public DateTimeOffset? AirsTime { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the date the series first aired.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
public DateTime? FirstAired { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets a collection containing the series metadata.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
public virtual ICollection<SeriesMetadata> SeriesMetadata { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets a collection containing the seasons.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
public virtual ICollection<Season> Seasons { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|