< Summary - Jellyfin

Information
Class: Jellyfin.Api.Models.ClientLogDtos.ClientLogDocumentResponseDto
Assembly: Jellyfin.Api
File(s): /srv/git/jellyfin/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 21
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/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs

#LineLine coverage
 1namespace Jellyfin.Api.Models.ClientLogDtos;
 2
 3/// <summary>
 4/// Client log document response dto.
 5/// </summary>
 6public class ClientLogDocumentResponseDto
 7{
 8    /// <summary>
 9    /// Initializes a new instance of the <see cref="ClientLogDocumentResponseDto"/> class.
 10    /// </summary>
 11    /// <param name="fileName">The file name.</param>
 12    public ClientLogDocumentResponseDto(string fileName)
 13    {
 14        FileName = fileName;
 015    }
 16
 17    /// <summary>
 18    /// Gets the resulting filename.
 19    /// </summary>
 20    public string FileName { get; }
 21}

Methods/Properties

.ctor(System.String)