diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-09-25 17:19:48 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-09-25 17:19:48 +0200 |
| commit | c5995af493542d898450359853c5fbb7a0b4bc53 (patch) | |
| tree | b6c3875f381ec8ed202c7af11624baece3d24435 /MediaBrowser.Controller | |
| parent | ac9dfa8e93106d907bbf78fe2350adfa47c76cec (diff) | |
Some style fixes
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/IListingsProvider.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/IListingsProvider.cs b/MediaBrowser.Controller/LiveTv/IListingsProvider.cs index c719ad81ca..2ea0a748e1 100644 --- a/MediaBrowser.Controller/LiveTv/IListingsProvider.cs +++ b/MediaBrowser.Controller/LiveTv/IListingsProvider.cs @@ -10,10 +10,15 @@ namespace MediaBrowser.Controller.LiveTv public interface IListingsProvider { string Name { get; } + string Type { get; } + Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken); + Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings); + Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location); + Task<List<ChannelInfo>> GetChannels(ListingsProviderInfo info, CancellationToken cancellationToken); } } |
