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