diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-10-09 22:21:32 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-09 22:21:32 +0900 |
| commit | 8d7ac291bc3a11bae520fdf0b9233e8a68734e5d (patch) | |
| tree | 40c971d2a26706b075cfda902c1890a7bb5e1c46 /MediaBrowser.Controller | |
| parent | 0c329736ccf74490f007d5c24b4d2cd7b4710394 (diff) | |
| parent | c5995af493542d898450359853c5fbb7a0b4bc53 (diff) | |
Merge pull request #1855 from Bond-009/stylefixes
Minor 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 c719ad81c..2ea0a748e 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); } } |
