aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/ProgramInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-14 16:00:32 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-14 16:00:32 -0400
commitb1d2841583079cdfbb9c3c3c63a1f0a15d5259d3 (patch)
tree7f8e4c34f0ee7c35a786f5e32833abd3e9f35891 /MediaBrowser.Controller/LiveTv/ProgramInfo.cs
parent6acfee7df67b95b919c6d3aedf3fc16b25edf974 (diff)
add movie metadata support to live tv
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ProgramInfo.cs')
-rw-r--r--MediaBrowser.Controller/LiveTv/ProgramInfo.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs
index 4d7e5ee63..36f082b02 100644
--- a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs
+++ b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs
@@ -145,6 +145,12 @@ namespace MediaBrowser.Controller.LiveTv
/// <value><c>true</c> if this instance is premiere; otherwise, <c>false</c>.</value>
public bool IsPremiere { get; set; }
+ /// <summary>
+ /// Gets or sets the production year.
+ /// </summary>
+ /// <value>The production year.</value>
+ public int? ProductionYear { get; set; }
+
public ProgramInfo()
{
Genres = new List<string>();