You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
458 B
15 lines
458 B
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; }
|
|
}
|
|
}
|