aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-11-08 07:46:51 +0100
committerGitHub <noreply@github.com>2021-11-08 07:46:51 +0100
commit0ee43f897b4c06c23cb741e85908527a46687769 (patch)
tree20762ea3a72ff6ae8bdd65a501685216ee279f2b /Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs
parent195831ad4a538e0a44714dfdc31bd007ab5c3e66 (diff)
parent666e95e27f92eabb15d6ab7ae399bdbb95eeb318 (diff)
Merge pull request #5918 from crobibero/client-logger
Add endpoint to log client events
Diffstat (limited to 'Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs')
-rw-r--r--Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs22
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..44509a9c0
--- /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; }
+ }
+}