< Summary - Jellyfin

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

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591
 3
 4using System;
 5
 6namespace MediaBrowser.Model.LiveTv
 7{
 8    /// <summary>
 9    /// Class ServiceInfo.
 10    /// </summary>
 11    public class LiveTvServiceInfo
 12    {
 13        public LiveTvServiceInfo()
 14        {
 015            Tuners = Array.Empty<string>();
 016        }
 17
 18        /// <summary>
 19        /// Gets or sets the name.
 20        /// </summary>
 21        /// <value>The name.</value>
 22        public string Name { get; set; }
 23
 24        /// <summary>
 25        /// Gets or sets the home page URL.
 26        /// </summary>
 27        /// <value>The home page URL.</value>
 28        public string HomePageUrl { get; set; }
 29
 30        /// <summary>
 31        /// Gets or sets the status.
 32        /// </summary>
 33        /// <value>The status.</value>
 34        public LiveTvServiceStatus Status { get; set; }
 35
 36        /// <summary>
 37        /// Gets or sets the status message.
 38        /// </summary>
 39        /// <value>The status message.</value>
 40        public string StatusMessage { get; set; }
 41
 42        /// <summary>
 43        /// Gets or sets the version.
 44        /// </summary>
 45        /// <value>The version.</value>
 46        public string Version { get; set; }
 47
 48        /// <summary>
 49        /// Gets or sets a value indicating whether this instance has update available.
 50        /// </summary>
 51        /// <value><c>true</c> if this instance has update available; otherwise, <c>false</c>.</value>
 52        public bool HasUpdateAvailable { get; set; }
 53
 54        /// <summary>
 55        /// Gets or sets a value indicating whether this instance is visible.
 56        /// </summary>
 57        /// <value><c>true</c> if this instance is visible; otherwise, <c>false</c>.</value>
 58        public bool IsVisible { get; set; }
 59
 60        public string[] Tuners { get; set; }
 61    }
 62}

Methods/Properties

.ctor()