Files
jellyfin-jellyfin-1/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs

17 lines
509 B
C#
Raw Normal View History

2015-07-21 00:22:46 -04:00
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();
}
}
}