aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-18 00:44:46 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-18 00:44:46 -0500
commite1e5d354345008e8d4ddc2dbbb99a68df4133280 (patch)
tree3d7fff49a735cda9062e64f374dc7bf4e1df8108 /MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
parent0b53ab76ebb26e2f93cdce4bb68dcdb4cf67d08d (diff)
live tv updates
Diffstat (limited to 'MediaBrowser.Model/LiveTv/ProgramInfoDto.cs')
-rw-r--r--MediaBrowser.Model/LiveTv/ProgramInfoDto.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
index 4febb2961..0c4eb28c5 100644
--- a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
+++ b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
@@ -114,6 +114,24 @@ namespace MediaBrowser.Model.LiveTv
/// <value>The user data.</value>
public UserItemDataDto UserData { 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>
+ public bool IsMovie { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether this instance is sports.
+ /// </summary>
+ /// <value><c>true</c> if this instance is sports; otherwise, <c>false</c>.</value>
+ public bool IsSports { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether this instance is series.
+ /// </summary>
+ /// <value><c>true</c> if this instance is series; otherwise, <c>false</c>.</value>
+ public bool IsSeries { get; set; }
+
public ProgramInfoDto()
{
Genres = new List<string>();