diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-10-29 06:33:34 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-10-29 06:33:34 -0600 |
| commit | bcb1c9b652d7b74e785f1221e5df6836e6bbfffe (patch) | |
| tree | 838bde6f8b1f6bac003b010b490ee1a7df1576f7 /Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs | |
| parent | 0e584f68409e71204f6b9387cde8efe2adb0fbed (diff) | |
Use response dto
Diffstat (limited to 'Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs b/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs new file mode 100644 index 000000000..c7e5ead9e --- /dev/null +++ b/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs @@ -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; } + } +} |
