mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
14 lines
391 B
C#
14 lines
391 B
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public interface IHasIdentities<out TIdentity>
|
|
where TIdentity : IItemIdentity
|
|
{
|
|
IEnumerable<TIdentity> Identities { get; }
|
|
|
|
Task FindIdentities(IProviderManager providerManager, CancellationToken cancellationToken);
|
|
}
|
|
} |