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.
27 lines
752 B
C#
27 lines
752 B
C#
// <copyright file="IExternalUrlProvider.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Controller.Providers;
|
|
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
/// <summary>
|
|
/// Interface to include related urls for an item.
|
|
/// </summary>
|
|
public interface IExternalUrlProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets the external service name.
|
|
/// </summary>
|
|
string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Get the list of external urls.
|
|
/// </summary>
|
|
/// <param name="item">The item to get external urls for.</param>
|
|
/// <returns>The list of external urls.</returns>
|
|
IEnumerable<string> GetExternalUrls(BaseItem item);
|
|
}
|