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