diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-03 23:18:50 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-03 23:18:50 -0500 |
| commit | 40959a816f49d040e16e0178d0e11d51282d98cc (patch) | |
| tree | d93991283d10f87d398e34db79e292eea1bcfa34 /MediaBrowser.Controller/LiveTv/RecordingInfo.cs | |
| parent | 61a78e2be961a7deb98558f2b872c417b03c885d (diff) | |
more support for episodes directly in a series folder
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/RecordingInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/RecordingInfo.cs | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs index 65e977d75..2c8e8cb46 100644 --- a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs +++ b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs @@ -20,7 +20,13 @@ namespace MediaBrowser.Controller.LiveTv /// ChannelName of the recording. /// </summary> public string ChannelName { get; set; } - + + /// <summary> + /// Gets or sets the type of the channel. + /// </summary> + /// <value>The type of the channel.</value> + public ChannelType ChannelType { get; set; } + /// <summary> /// Name of the recording. /// </summary> @@ -76,6 +82,18 @@ namespace MediaBrowser.Controller.LiveTv /// <value>The episode title.</value> public string EpisodeTitle { get; set; } + /// <summary> + /// Gets or sets the official rating. + /// </summary> + /// <value>The official rating.</value> + public string OfficialRating { get; set; } + + /// <summary> + /// Gets or sets the community rating. + /// </summary> + /// <value>The community rating.</value> + public float? CommunityRating { get; set; } + public RecordingInfo() { Genres = new List<string>(); |
