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