diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-23 13:05:41 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-23 13:05:41 -0500 |
| commit | 145285784bfb6a2fcd0e9234d569d7ad5083516f (patch) | |
| tree | 67642bd67d7e05ce58e6592681e772974088ee10 /MediaBrowser.Controller/LiveTv/ProgramInfo.cs | |
| parent | 6cfc103bd3112e0a91e1c9154261f62cdee4525f (diff) | |
trim tv objects
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ProgramInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ProgramInfo.cs | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs index 0368c5f2f..4d7e5ee63 100644 --- a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs +++ b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs @@ -18,12 +18,6 @@ namespace MediaBrowser.Controller.LiveTv public string ChannelId { get; set; } /// <summary> - /// Gets or sets the channel primary image tag. - /// </summary> - /// <value>The channel primary image tag.</value> - public Guid? ChannelPrimaryImageTag { get; set; } - - /// <summary> /// Name of the program /// </summary> public string Name { get; set; } @@ -104,6 +98,12 @@ namespace MediaBrowser.Controller.LiveTv public string ImageUrl { get; set; } /// <summary> + /// Gets or sets a value indicating whether this instance has image. + /// </summary> + /// <value><c>null</c> if [has image] contains no value, <c>true</c> if [has image]; otherwise, <c>false</c>.</value> + public bool? HasImage { get; set; } + + /// <summary> /// Gets or sets a value indicating whether this instance is movie. /// </summary> /// <value><c>true</c> if this instance is movie; otherwise, <c>false</c>.</value> @@ -145,12 +145,6 @@ 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 a value indicating whether this instance has image. - /// </summary> - /// <value><c>null</c> if [has image] contains no value, <c>true</c> if [has image]; otherwise, <c>false</c>.</value> - public bool? HasImage { get; set; } - public ProgramInfo() { Genres = new List<string>(); |
