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);
|
||
|
}
|
||
|
}
|