aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/TimerInfoDto.cs
blob: c33535a3de72c6a0947b2186551393afc021971d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using MediaBrowser.Model.Dto;

namespace MediaBrowser.Model.LiveTv
{
    public class TimerInfoDto : BaseTimerInfoDto
    {
        /// <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; }

        /// <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>
        public BaseItemDto ProgramInfo { get; set; }

    }
}