aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs
blob: c7e5ead9ed2a58829f65fa1b24b3b9ebfe9037ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
    }
}