< Summary - Jellyfin

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

#LineLine coverage
 1using System;
 2using MediaBrowser.Model.Session;
 3
 4namespace MediaBrowser.Model.Devices;
 5
 6/// <summary>
 7/// A class for device Information.
 8/// </summary>
 9public class DeviceInfo
 10{
 11    /// <summary>
 12    /// Initializes a new instance of the <see cref="DeviceInfo"/> class.
 13    /// </summary>
 14    public DeviceInfo()
 15    {
 016        Capabilities = new ClientCapabilities();
 017    }
 18
 19    /// <summary>
 20    /// Gets or sets the name.
 21    /// </summary>
 22    /// <value>The name.</value>
 23    public string? Name { get; set; }
 24
 25    /// <summary>
 26    /// Gets or sets the custom name.
 27    /// </summary>
 28    /// <value>The custom name.</value>
 29    public string? CustomName { get; set; }
 30
 31    /// <summary>
 32    /// Gets or sets the access token.
 33    /// </summary>
 34    /// <value>The access token.</value>
 35    public string? AccessToken { get; set; }
 36
 37    /// <summary>
 38    /// Gets or sets the identifier.
 39    /// </summary>
 40    /// <value>The identifier.</value>
 41    public string? Id { get; set; }
 42
 43    /// <summary>
 44    /// Gets or sets the last name of the user.
 45    /// </summary>
 46    /// <value>The last name of the user.</value>
 47    public string? LastUserName { get; set; }
 48
 49    /// <summary>
 50    /// Gets or sets the name of the application.
 51    /// </summary>
 52    /// <value>The name of the application.</value>
 53    public string? AppName { get; set; }
 54
 55    /// <summary>
 56    /// Gets or sets the application version.
 57    /// </summary>
 58    /// <value>The application version.</value>
 59    public string? AppVersion { get; set; }
 60
 61    /// <summary>
 62    /// Gets or sets the last user identifier.
 63    /// </summary>
 64    /// <value>The last user identifier.</value>
 65    public Guid? LastUserId { get; set; }
 66
 67    /// <summary>
 68    /// Gets or sets the date last modified.
 69    /// </summary>
 70    /// <value>The date last modified.</value>
 71    public DateTime? DateLastActivity { get; set; }
 72
 73    /// <summary>
 74    /// Gets or sets the capabilities.
 75    /// </summary>
 76    /// <value>The capabilities.</value>
 77    public ClientCapabilities Capabilities { get; set; }
 78
 79    /// <summary>
 80    /// Gets or sets the icon URL.
 81    /// </summary>
 82    /// <value>The icon URL.</value>
 83    public string? IconUrl { get; set; }
 84}

Methods/Properties

.ctor()