Added EpgFullInfo & EpgInfo

Modified RecordingInfo & ChannelInfo

Changed LiveTvService
This commit is contained in:
Sven Van den brande
2013-11-02 22:38:21 +01:00
parent e8f8d6651c
commit 8f7021eb42
9 changed files with 153 additions and 8 deletions

View File

@@ -13,6 +13,10 @@ namespace MediaBrowser.Controller.LiveTv
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Get or sets the Id.
/// </summary>
/// <value>The id of the channel.</value>
public string Id { get; set; }
/// <summary>

View File

@@ -24,5 +24,7 @@ namespace MediaBrowser.Controller.LiveTv
Task<IEnumerable<ChannelInfo>> GetChannelsAsync(CancellationToken cancellationToken);
Task<IEnumerable<RecordingInfo>> GetRecordingsAsync(CancellationToken cancellationToken);
Task<IEnumerable<EpgFullInfo>> GetEpgAsync(CancellationToken cancellationToken);
}
}