2020-09-01 15:36:45 +00:00
|
|
|
#pragma warning disable CA2227
|
|
|
|
|
2019-06-01 20:40:01 +00:00
|
|
|
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 season.
|
|
|
|
/// </summary>
|
|
|
|
public class Season : 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="Season"/> 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 Season(Library library) : base(library)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
Episodes = new HashSet<Episode>();
|
|
|
|
SeasonMetadata = new HashSet<SeasonMetadata>();
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the season number.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
public int? SeasonNumber { get; set; }
|
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the season metadata.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
public virtual ICollection<SeasonMetadata> SeasonMetadata { get; protected set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a collection containing the number of episodes.
|
|
|
|
/// </summary>
|
2020-05-02 21:56:05 +00:00
|
|
|
public virtual ICollection<Episode> Episodes { get; protected set; }
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|