< Summary - Jellyfin

Information
Class: MediaBrowser.Model.LiveTv.TimerInfoDto
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/LiveTv/TimerInfoDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 45
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/LiveTv/TimerInfoDto.cs

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591
 3
 4using MediaBrowser.Model.Dto;
 5
 6namespace MediaBrowser.Model.LiveTv
 7{
 8    public class TimerInfoDto : BaseTimerInfoDto
 9    {
 010        public TimerInfoDto()
 11        {
 012            Type = "Timer";
 013        }
 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}

Methods/Properties

.ctor()