mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -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);
|
|||
|
}
|
|||
|
}
|