namespace Jellyfin.Api.Models.ClientLogDtos { /// /// Client log document response dto. /// public class ClientLogDocumentResponseDto { /// /// Initializes a new instance of the class. /// /// The file name. public ClientLogDocumentResponseDto(string filename) { Filename = filename; } /// /// Gets the resulting filename. /// public string Filename { get; } } }