diff options
| author | nyanmisaka <nst799610810@gmail.com> | 2020-08-19 16:56:53 +0800 |
|---|---|---|
| committer | nyanmisaka <nst799610810@gmail.com> | 2020-08-19 16:56:53 +0800 |
| commit | aa75755480379e9497e82a4cb9410c267255c936 (patch) | |
| tree | 25a20af061fd45e90398161a8f82b45d14e7cdbb /Jellyfin.Api/Models/LibraryStructureDto/LibraryOptionsDto.cs | |
| parent | 8165c3bb21a1ac4869dafa951f8a3ca3d21dda1e (diff) | |
| parent | 93fe595e5e9863874c1973e4f2d7f3c85549d3f9 (diff) | |
Merge remote-tracking branch 'upstream/master' into fonts
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 |
