using System.Collections.Generic;
namespace Jellyfin.Plugin.Simkl.API.Objects
{
///
/// Simkl movie ids.
///
public class SimklMovieIds : SimklIds
{
///
/// Initializes a new instance of the class.
///
/// the provider movie ids.
public SimklMovieIds(Dictionary providerMovieIds)
: base(providerMovieIds)
{
}
///
/// Gets or sets the tvdb id.
///
public int? Tvdb { get; set; }
///
/// Gets or sets the mal id.
///
public int? Mal { get; set; }
///
/// Gets or sets the anidb id.
///
public int? Anidb { get; set; }
///
/// Gets or sets the hulu id.
///
public int? Hulu { get; set; }
///
/// Gets or sets the crunchyroll id.
///
public int? Crunchyroll { get; set; }
///
/// Gets or sets the movie db id.
///
public string Moviedb { get; set; }
}
}