mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
16 lines
277 B
C#
16 lines
277 B
C#
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public interface IExternalId
|
|
{
|
|
string Name { get; }
|
|
|
|
string Key { get; }
|
|
|
|
string UrlFormatString { get; }
|
|
|
|
bool Supports(IHasProviderIds item);
|
|
}
|
|
}
|