jellyfin/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs

22 lines
551 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.ClientLogDtos;
/// <summary>
/// Client log document response dto.
/// </summary>
public class ClientLogDocumentResponseDto
2021-10-29 14:33:34 +02:00
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Initializes a new instance of the <see cref="ClientLogDocumentResponseDto"/> class.
2021-10-29 14:33:34 +02:00
/// </summary>
2023-01-31 12:18:10 +01:00
/// <param name="fileName">The file name.</param>
public ClientLogDocumentResponseDto(string fileName)
2021-10-29 14:33:34 +02:00
{
2023-01-31 12:18:10 +01:00
FileName = fileName;
2021-10-29 14:33:34 +02:00
}
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets the resulting filename.
/// </summary>
public string FileName { get; }
2021-10-29 14:33:34 +02:00
}