using System; using System.Collections.Generic; using System.Text.Json.Serialization; namespace Jellyfin.Plugin.Simkl.API.Objects { /// /// Season. /// public class Season { /// /// Gets or sets the season number. /// [JsonPropertyName("number")] public int? Number { get; set; } /// /// Gets or sets the episodes. /// [JsonPropertyName("episodes")] public IReadOnlyList Episodes { get; set; } = Array.Empty(); } }