From f5f890e68562e55d4bed16c454c4b4305152b296 Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Tue, 31 Jan 2023 12:18:10 +0100 Subject: Migrate to file-scoped namespaces --- .../LibraryStructureDto/UpdateLibraryOptionsDto.cs | 25 +++++++++++----------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'Jellyfin.Api/Models/LibraryStructureDto/UpdateLibraryOptionsDto.cs') diff --git a/Jellyfin.Api/Models/LibraryStructureDto/UpdateLibraryOptionsDto.cs b/Jellyfin.Api/Models/LibraryStructureDto/UpdateLibraryOptionsDto.cs index c78ed51f7..225c7c7bc 100644 --- a/Jellyfin.Api/Models/LibraryStructureDto/UpdateLibraryOptionsDto.cs +++ b/Jellyfin.Api/Models/LibraryStructureDto/UpdateLibraryOptionsDto.cs @@ -1,21 +1,20 @@ using System; using MediaBrowser.Model.Configuration; -namespace Jellyfin.Api.Models.LibraryStructureDto +namespace Jellyfin.Api.Models.LibraryStructureDto; + +/// +/// Update library options dto. +/// +public class UpdateLibraryOptionsDto { /// - /// Update library options dto. + /// Gets or sets the library item id. /// - public class UpdateLibraryOptionsDto - { - /// - /// Gets or sets the library item id. - /// - public Guid Id { get; set; } + public Guid Id { get; set; } - /// - /// Gets or sets library options. - /// - public LibraryOptions? LibraryOptions { get; set; } - } + /// + /// Gets or sets library options. + /// + public LibraryOptions? LibraryOptions { get; set; } } -- cgit v1.2.3