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

47 lines
1.4 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a a series.
/// </summary>
public class Series : LibraryItem
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Series"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="library">The library.</param>
public Series(Library library) : base(library)
2020-05-02 17:56:05 -04:00
{
Seasons = new HashSet<Season>();
SeriesMetadata = new HashSet<SeriesMetadata>();
2020-05-02 17:56:05 -04:00
}
/// <summary>
/// Gets or sets the days of week.
2020-05-02 17:56:05 -04:00
/// </summary>
public DayOfWeek? AirsDayOfWeek { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the time the show airs, ignore the date portion.
2020-05-02 17:56:05 -04:00
/// </summary>
public DateTimeOffset? AirsTime { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the date the series first aired.
2020-05-02 17:56:05 -04:00
/// </summary>
public DateTime? FirstAired { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets a collection containing the series metadata.
2020-05-02 17:56:05 -04:00
/// </summary>
2021-03-17 19:08:11 -04:00
public virtual ICollection<SeriesMetadata> SeriesMetadata { get; private set; }
2020-05-02 17:56:05 -04:00
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets a collection containing the seasons.
2020-05-02 17:56:05 -04:00
/// </summary>
2021-03-17 19:08:11 -04:00
public virtual ICollection<Season> Seasons { get; private set; }
2020-05-02 17:56:05 -04:00
}
}