jellyfin/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDt...

22 lines
551 B
C#
Raw Normal View History

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