mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
16 lines
425 B
C#
16 lines
425 B
C#
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Providers
|
|||
|
{
|
|||
|
public interface ICustomMetadataProvider : IMetadataProvider
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public interface ICustomMetadataProvider<TItemType> : IMetadataProvider<TItemType>, ICustomMetadataProvider
|
|||
|
where TItemType : IHasMetadata
|
|||
|
{
|
|||
|
Task FetchAsync(TItemType item, CancellationToken cancellationToken);
|
|||
|
}
|
|||
|
}
|