#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; }
}
}