You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
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);
|
|
}
|
|
} |