namespace Jellyfin.Api.Models.ClientLogDtos
{
    /// 
    /// Client log document response dto.
    /// 
    public class ClientLogDocumentResponseDto
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The file name.
        public ClientLogDocumentResponseDto(string fileName)
        {
            FileName = fileName;
        }
        /// 
        /// Gets the resulting filename.
        /// 
        public string FileName { get; }
    }
}