mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 00:05:26 +03:00
Use response dto
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user