diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-11 13:47:29 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-11 13:47:29 -0400 |
| commit | 881fcf2434bc8833c45f4028e5bfa2ad113a9d18 (patch) | |
| tree | f380444ed302c2456173ecb4c56cc15367180aaf /MediaBrowser.Controller/LiveTv/ProgramInfo.cs | |
| parent | 853848966f191c3dc026b77a8214bd22b9f266ce (diff) | |
update components
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ProgramInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ProgramInfo.cs | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs index 36f082b02..3f8fc639f 100644 --- a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs +++ b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs @@ -150,7 +150,22 @@ namespace MediaBrowser.Controller.LiveTv /// </summary> /// <value>The production year.</value> public int? ProductionYear { get; set; } - + /// <summary> + /// Gets or sets the home page URL. + /// </summary> + /// <value>The home page URL.</value> + public string HomePageUrl { get; set; } + /// <summary> + /// Gets or sets the series identifier. + /// </summary> + /// <value>The series identifier.</value> + public string SeriesId { get; set; } + /// <summary> + /// Gets or sets the show identifier. + /// </summary> + /// <value>The show identifier.</value> + public string ShowId { get; set; } + public ProgramInfo() { Genres = new List<string>(); |
