diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-07-26 16:09:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-26 16:09:31 +0000 |
| commit | 6015ceb731c204e7b0c2d7c69440f984558848d2 (patch) | |
| tree | 1de14d0d19b6027fa350e5157117d75e2d36889f /Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs | |
| parent | 44acb9f7d92920d26590dbac6757aef8537da736 (diff) | |
| parent | 259b5d7f0a051cb835839a90f7d9fd223cc12456 (diff) | |
Merge pull request #3693 from crobibero/api-library
Fix LibraryStructure API parameters
Diffstat (limited to 'Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs | 15 |
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 |
