diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-10-29 11:24:27 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-10-30 11:29:22 -0600 |
| commit | f4844c08a523ea8879cb3abbc24c23b9a924dc9e (patch) | |
| tree | 54db20ddcc4405fb0d57a983b70fd0fd4b37753d /Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs | |
| parent | 73201ed498ade1b2731b58f7e8fe1f0aba54a3e5 (diff) | |
Update Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs
Co-authored-by: Niels van Velzen <nielsvanvelzen@users.noreply.github.com>
Diffstat (limited to 'Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs b/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs index c7e5ead9e..44509a9c0 100644 --- a/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs +++ b/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs @@ -8,15 +8,15 @@ namespace Jellyfin.Api.Models.ClientLogDtos /// <summary> /// Initializes a new instance of the <see cref="ClientLogDocumentResponseDto"/> class. /// </summary> - /// <param name="filename">The file name.</param> - public ClientLogDocumentResponseDto(string filename) + /// <param name="fileName">The file name.</param> + public ClientLogDocumentResponseDto(string fileName) { - Filename = filename; + FileName = fileName; } /// <summary> /// Gets the resulting filename. /// </summary> - public string Filename { get; } + public string FileName { get; } } } |
