Display specials within seasons

This commit is contained in:
Luke Pulverenti
2013-11-15 16:31:33 -05:00
parent cc16fd3af8
commit a09e330d4e
12 changed files with 172 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class RecordingQuery.
/// </summary>
public class RecordingQuery
{
/// <summary>
/// Gets or sets a value indicating whether this instance has recorded.
/// </summary>
/// <value><c>null</c> if [has recorded] contains no value, <c>true</c> if [has recorded]; otherwise, <c>false</c>.</value>
public bool? HasRecorded { get; set; }
}
}