aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-07-31 09:19:02 -0600
committercrobibero <cody@robibe.ro>2020-07-31 09:19:02 -0600
commit9171e904de8c3de2dd8049ba3a1ff11340269f2d (patch)
treecb26786e6a1db8f2f3d5b1a330b09146c0ccb608 /Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs
parentf543a17d1b8a4e1e2f420831de586e9ecc015166 (diff)
parent62fa72114cd543d47b2f8904cc55d90a30ac02e6 (diff)
Merge remote-tracking branch 'upstream/api-migration' into api-video
Diffstat (limited to 'Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs')
-rw-r--r--Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs b/Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs
new file mode 100644
index 000000000..a13cb90db
--- /dev/null
+++ b/Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs
@@ -0,0 +1,15 @@
+using MediaBrowser.Model.Configuration;
+
+namespace Jellyfin.Api.Models.LibraryStructureDto
+{
+ /// <summary>
+ /// Library options dto.
+ /// </summary>
+ public class LibraryOptionsDto
+ {
+ /// <summary>
+ /// Gets or sets library options.
+ /// </summary>
+ public LibraryOptions? LibraryOptions { get; set; }
+ }
+} \ No newline at end of file