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

56 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;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a season.
/// </summary>
public class Season : LibraryItem
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Season"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="series">The series.</param>
public Season(Series series)
2020-05-02 17:56:05 -04:00
{
if (series == null)
2020-06-20 04:35:29 -04:00
{
throw new ArgumentNullException(nameof(series));
2020-06-20 04:35:29 -04:00
}
series.Seasons.Add(this);
2020-05-02 17:56:05 -04:00
Episodes = new HashSet<Episode>();
SeasonMetadata = new HashSet<SeasonMetadata>();
2020-05-02 17:56:05 -04:00
}
/// <summary>
/// Initializes a new instance of the <see cref="Season"/> 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 Season()
2020-05-02 17:56:05 -04:00
{
}
/// <summary>
/// Gets or sets the season number.
2020-05-02 17:56:05 -04:00
/// </summary>
public int? SeasonNumber { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the season metadata.
2020-05-02 17:56:05 -04:00
/// </summary>
public virtual ICollection<SeasonMetadata> SeasonMetadata { get; protected set; }
/// <summary>
/// Gets or sets a collection containing the number of episodes.
/// </summary>
2020-05-02 17:56:05 -04:00
public virtual ICollection<Episode> Episodes { get; protected set; }
}
}