mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-13 12:16:49 +01:00
18 lines
553 B
C#
18 lines
553 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv;
|
|
|
|
/// <summary>
|
|
/// Provides Schedules Direct specific operations.
|
|
/// </summary>
|
|
public interface ISchedulesDirectService
|
|
{
|
|
/// <summary>
|
|
/// Gets the available countries from the Schedules Direct API, using a file cache.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>The raw JSON response bytes.</returns>
|
|
Task<byte[]> GetAvailableCountries(CancellationToken cancellationToken);
|
|
}
|