jellyfin/MediaBrowser.Model/LiveTv/TimerInfoDto.cs

46 lines
1.2 KiB
C#
Raw Normal View History

2015-05-31 19:12:58 +00:00
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.LiveTv
2013-11-27 19:04:19 +00:00
{
2014-03-23 22:21:49 +00:00
public class TimerInfoDto : BaseTimerInfoDto
2013-11-27 19:04:19 +00:00
{
2016-07-17 04:20:36 +00:00
public TimerInfoDto()
{
Type = "Timer";
}
2014-03-23 22:21:49 +00:00
/// <summary>
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
public RecordingStatus Status { get; set; }
/// <summary>
/// Gets or sets the series timer identifier.
/// </summary>
/// <value>The series timer identifier.</value>
public string SeriesTimerId { get; set; }
/// <summary>
/// Gets or sets the external series timer identifier.
/// </summary>
/// <value>The external series timer identifier.</value>
public string ExternalSeriesTimerId { get; set; }
2016-07-17 04:20:36 +00:00
public string Type { get; set; }
2014-03-23 22:21:49 +00:00
/// <summary>
/// Gets or sets the run time ticks.
/// </summary>
/// <value>The run time ticks.</value>
public long? RunTimeTicks { get; set; }
/// <summary>
/// Gets or sets the program information.
/// </summary>
/// <value>The program information.</value>
2015-05-31 19:12:58 +00:00
public BaseItemDto ProgramInfo { get; set; }
2014-03-23 22:21:49 +00:00
}
2013-11-27 19:04:19 +00:00
}