mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 10:03:39 +01:00
15 lines
394 B
C#
15 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Common;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public interface ISeriesOrderManager
|
|
{
|
|
Task<int?> FindSeriesIndex(string orderType, string seriesName);
|
|
void AddParts(IEnumerable<ISeriesOrderProvider> orderProviders);
|
|
}
|
|
}
|