mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
10 lines
221 B
C#
10 lines
221 B
C#
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace MediaBrowser.Controller.Providers
|
||
|
|
{
|
||
|
|
public interface ISeriesOrderProvider
|
||
|
|
{
|
||
|
|
string OrderType { get; }
|
||
|
|
Task<int?> FindSeriesIndex(string seriesName);
|
||
|
|
}
|
||
|
|
}
|