#pragma warning disable CA2227 using System.Collections.Generic; using System.Text.Json.Serialization; namespace Jellyfin.Plugin.Simkl.API.Objects { /// /// Simkl history container. /// public class SimklHistory { /// /// Initializes a new instance of the class. /// public SimklHistory() { Movies = new List(); Shows = new List(); Episodes = new List(); } /// /// Gets or sets list of movies. /// [JsonPropertyName("movies")] public List Movies { get; set; } /// /// Gets or sets the list of shows. /// [JsonPropertyName("shows")] public List Shows { get; set; } /// /// Gets or sets the list of episodes. /// [JsonPropertyName("episodes")] public List Episodes { get; set; } } }