using System; using Newtonsoft.Json; namespace CRD.Utils.Sonarr.Models; public class SonarrStatistics{ /// /// Gets or sets the previous airing. /// /// /// The previous airing. /// [JsonProperty("previousAiring")] public DateTimeOffset PreviousAiring{ get; set; } /// /// Gets or sets the episode file count. /// /// /// The episode file count. /// [JsonProperty("episodeFileCount")] public int EpisodeFileCount{ get; set; } /// /// Gets or sets the episode count. /// /// /// The episode count. /// [JsonProperty("episodeCount")] public int EpisodeCount{ get; set; } /// /// Gets or sets the total episode count. /// /// /// The total episode count. /// [JsonProperty("totalEpisodeCount")] public int TotalEpisodeCount{ get; set; } /// /// Gets or sets the size on disk. /// /// /// The size on disk. /// [JsonProperty("sizeOnDisk")] public long SizeOnDisk{ get; set; } /// /// Gets or sets the percent of episodes. /// /// /// The percent of episodes. /// [JsonProperty("percentOfEpisodes")] public double PercentOfEpisodes{ get; set; } }