aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-19 02:12:58 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-19 02:12:58 -0400
commit615d1e2a53c9079e6b13789cbaa0410d9039f435 (patch)
tree3c7b35b4275dae5c967f53e1bf72e067c55d6b31 /MediaBrowser.Controller/LiveTv
parentd2b4dd9a986276999540d6162d08a0973b3f6226 (diff)
update detail page
Diffstat (limited to 'MediaBrowser.Controller/LiveTv')
-rw-r--r--MediaBrowser.Controller/LiveTv/ProgramInfo.cs17
1 files changed, 16 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs
index 3f8fc639f1..467264e7ab 100644
--- a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs
+++ b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs
@@ -33,6 +33,11 @@ namespace MediaBrowser.Controller.LiveTv
/// </summary>
/// <value>The overview.</value>
public string Overview { get; set; }
+ /// <summary>
+ /// Gets or sets the short overview.
+ /// </summary>
+ /// <value>The short overview.</value>
+ public string ShortOverview { get; set; }
/// <summary>
/// The start date of the program, in UTC.
@@ -165,7 +170,17 @@ namespace MediaBrowser.Controller.LiveTv
/// </summary>
/// <value>The show identifier.</value>
public string ShowId { get; set; }
-
+ /// <summary>
+ /// Gets or sets the season number.
+ /// </summary>
+ /// <value>The season number.</value>
+ public int? SeasonNumber { get; set; }
+ /// <summary>
+ /// Gets or sets the episode number.
+ /// </summary>
+ /// <value>The episode number.</value>
+ public int? EpisodeNumber { get; set; }
+
public ProgramInfo()
{
Genres = new List<string>();