TimerInfoDto.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #pragma warning disable CS1591
  2. using MediaBrowser.Model.Dto;
  3. namespace MediaBrowser.Model.LiveTv
  4. {
  5. public class TimerInfoDto : BaseTimerInfoDto
  6. {
  7. public TimerInfoDto()
  8. {
  9. Type = "Timer";
  10. }
  11. /// <summary>
  12. /// Gets or sets the status.
  13. /// </summary>
  14. /// <value>The status.</value>
  15. public RecordingStatus Status { get; set; }
  16. /// <summary>
  17. /// Gets or sets the series timer identifier.
  18. /// </summary>
  19. /// <value>The series timer identifier.</value>
  20. public string SeriesTimerId { get; set; }
  21. /// <summary>
  22. /// Gets or sets the external series timer identifier.
  23. /// </summary>
  24. /// <value>The external series timer identifier.</value>
  25. public string ExternalSeriesTimerId { get; set; }
  26. /// <summary>
  27. /// Gets or sets the run time ticks.
  28. /// </summary>
  29. /// <value>The run time ticks.</value>
  30. public long? RunTimeTicks { get; set; }
  31. /// <summary>
  32. /// Gets or sets the program information.
  33. /// </summary>
  34. /// <value>The program information.</value>
  35. public BaseItemDto ProgramInfo { get; set; }
  36. }
  37. }