jellyfin/MediaBrowser.Controller/LiveTv/IListingsProvider.cs

13 lines
361 B
C#
Raw Normal View History

2015-07-21 04:22:46 +00:00
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
2015-07-20 18:32:55 +00:00
namespace MediaBrowser.Controller.LiveTv
{
public interface IListingsProvider
{
2015-07-21 04:22:46 +00:00
Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ChannelInfo channel, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken);
2015-07-20 18:32:55 +00:00
}
}