using System.Collections.Generic;
using System.Text.Json.Serialization;
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.
///
[JsonPropertyName("tvdb")]
public int? Tvdb { get; set; }
///
/// Gets or sets the mal id.
///
[JsonPropertyName("mal")]
public int? Mal { get; set; }
///
/// Gets or sets the anidb id.
///
[JsonPropertyName("anidb")]
public int? Anidb { get; set; }
///
/// Gets or sets the hulu id.
///
[JsonPropertyName("hulu")]
public int? Hulu { get; set; }
///
/// Gets or sets the crunchyroll id.
///
[JsonPropertyName("crunchyroll")]
public int? Crunchyroll { get; set; }
///
/// Gets or sets the movie db id.
///
[JsonPropertyName("moviedb")]
public string? Moviedb { get; set; }
}
}