18 lines
406 B
C#
18 lines
406 B
C#
namespace Jellyfin.Plugin.Simkl.API.Objects
|
|
{
|
|
/// <summary>
|
|
/// Season.
|
|
/// </summary>
|
|
public class Season
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the season number.
|
|
/// </summary>
|
|
public int? Number { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the episodes.
|
|
/// </summary>
|
|
public ShowEpisode[] Episodes { get; set; }
|
|
}
|
|
} |