af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
// <copyright file="TmdbBoxSetExternalId.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.BoxSets
|
|
{
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
/// <summary>
|
|
/// External id for a TMDb box set.
|
|
/// </summary>
|
|
public class TmdbBoxSetExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => TmdbUtils.ProviderName;
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.TmdbCollection.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.BoxSet;
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
{
|
|
return item is Movie || item is MusicVideo || item is Trailer;
|
|
}
|
|
}
|
|
}
|