mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
17 lines
509 B
C#
17 lines
509 B
C#
|
|
using MediaBrowser.Controller.LiveTv;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Server.Implementations.LiveTv.Listings
|
|||
|
|
{
|
|||
|
|
public class SchedulesDirect : IListingsProvider
|
|||
|
|
{
|
|||
|
|
public Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ChannelInfo channel, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|