#pragma warning disable CA2227 using System.Collections.Generic; 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. /// public List movies { get; set; } /// /// Gets or sets the list of shows. /// public List shows { get; set; } /// /// Gets or sets the list of episodes. /// public List episodes { get; set; } } }