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