From 5924a81eebe8712bf140dd663272cc2aa23849b9 Mon Sep 17 00:00:00 2001 From: crobibero Date: Fri, 24 Jul 2020 17:31:11 -0600 Subject: [PATCH] Fix request parameters --- .../LibraryStructureDto/LibraryOptionsDto.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs diff --git a/Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs b/Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs new file mode 100644 index 0000000000..a13cb90dbe --- /dev/null +++ b/Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs @@ -0,0 +1,15 @@ +using MediaBrowser.Model.Configuration; + +namespace Jellyfin.Api.Models.LibraryStructureDto +{ + /// + /// Library options dto. + /// + public class LibraryOptionsDto + { + /// + /// Gets or sets library options. + /// + public LibraryOptions? LibraryOptions { get; set; } + } +} \ No newline at end of file