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

23 lines
625 B
C#
Raw Normal View History

2021-10-29 14:33:34 +02:00
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)
2021-10-29 14:33:34 +02:00
{
FileName = fileName;
2021-10-29 14:33:34 +02:00
}
/// <summary>
/// Gets the resulting filename.
/// </summary>
public string FileName { get; }
2021-10-29 14:33:34 +02:00
}
}