using System.Collections.Generic;
namespace Jellyfin.Plugin.Simkl.API.Objects
{
///
/// Simkl show ids.
///
public class SimklShowIds : SimklIds
{
///
/// Initializes a new instance of the class.
///
/// The provider movie ids.
public SimklShowIds(Dictionary providerMovieIds)
: base(providerMovieIds)
{
}
///
/// Gets or sets tvdb.
///
public int? tvdb { get; set; }
///
/// Gets or sets mal.
///
public int? mal { get; set; }
///
/// Gets or sets anidb.
///
public int? anidb { get; set; }
///
/// Gets or sets hulu.
///
public int? hulu { get; set; }
///
/// Gets or sets crunchyroll.
///
public int? crunchyroll { get; set; }
///
/// Gets or sets zap2it.
///
public string zap2It { get; set; }
}
}