< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.LiveTv.TimerEventInfo
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/LiveTv/TimerEventInfo.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 18
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.Controller/LiveTv/TimerEventInfo.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System;
 4
 5namespace MediaBrowser.Controller.LiveTv
 6{
 7    public class TimerEventInfo
 8    {
 9        public TimerEventInfo(string id)
 10        {
 11            Id = id;
 012        }
 13
 14        public string Id { get; }
 15
 16        public Guid? ProgramId { get; set; }
 17    }
 18}

Methods/Properties

.ctor(System.String)