using System.Collections.Generic;
using Newtonsoft.Json;
namespace CRD.Utils.Sonarr.Models;
public class SonarrSeason{
///
/// Gets or sets the season number.
///
///
/// The season number.
///
[JsonProperty("seasonNumber")] public int SeasonNumber { get; set; }
///
/// Gets or sets a value indicating whether this is monitored.
///
///
/// true if monitored; otherwise, false.
///
[JsonProperty("monitored")] public bool Monitored { get; set; }
///
/// Gets or sets the statistics.
///
///
/// The statistics.
///
[JsonProperty("statistics")] public SonarrStatistics Statistics { get; set; }
///
/// Gets or sets the images.
///
///
/// The images.
///
[JsonProperty("images")] public List Images { get; set; }
}