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.
25 lines
814 B
25 lines
814 B
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public class SeriesInfo : ItemLookupInfo, IHasIdentities<SeriesIdentity>
|
|
{
|
|
private List<SeriesIdentity> _identities = new List<SeriesIdentity>();
|
|
|
|
public int? AnimeSeriesIndex { get; set; }
|
|
|
|
public IEnumerable<SeriesIdentity> Identities
|
|
{
|
|
get { return _identities; }
|
|
}
|
|
|
|
public async Task FindIdentities(IProviderManager providerManager, CancellationToken cancellationToken)
|
|
{
|
|
var identifier = new ItemIdentifier<SeriesInfo, SeriesIdentity>();
|
|
_identities = (await identifier.FindIdentities(this, providerManager, cancellationToken)).ToList();
|
|
}
|
|
}
|
|
} |