namespace Jellyfin.Plugin.Simkl.API.Objects
{
///
/// Season.
///
public class Season
{
///
/// Gets or sets the season number.
///
public int? number { get; set; }
///
/// Gets or sets the episodes.
///
public ShowEpisode[] episodes { get; set; }
}
}