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