RecordingQuery.cs 458 B

1234567891011121314
  1. namespace MediaBrowser.Model.LiveTv
  2. {
  3. /// <summary>
  4. /// Class RecordingQuery.
  5. /// </summary>
  6. public class RecordingQuery
  7. {
  8. /// <summary>
  9. /// Gets or sets a value indicating whether this instance has recorded.
  10. /// </summary>
  11. /// <value><c>null</c> if [has recorded] contains no value, <c>true</c> if [has recorded]; otherwise, <c>false</c>.</value>
  12. public bool? HasRecorded { get; set; }
  13. }
  14. }