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 --- .../Models/LibraryDtos/LibraryTypeOptionsDto.cs | 49 +++++++++++----------- 1 file changed, 24 insertions(+), 25 deletions(-) (limited to 'Jellyfin.Api/Models/LibraryDtos/LibraryTypeOptionsDto.cs') diff --git a/Jellyfin.Api/Models/LibraryDtos/LibraryTypeOptionsDto.cs b/Jellyfin.Api/Models/LibraryDtos/LibraryTypeOptionsDto.cs index 20f45196d..125a6746e 100644 --- a/Jellyfin.Api/Models/LibraryDtos/LibraryTypeOptionsDto.cs +++ b/Jellyfin.Api/Models/LibraryDtos/LibraryTypeOptionsDto.cs @@ -3,36 +3,35 @@ using System.Collections.Generic; using MediaBrowser.Model.Configuration; using MediaBrowser.Model.Entities; -namespace Jellyfin.Api.Models.LibraryDtos +namespace Jellyfin.Api.Models.LibraryDtos; + +/// +/// Library type options dto. +/// +public class LibraryTypeOptionsDto { /// - /// Library type options dto. + /// Gets or sets the type. /// - public class LibraryTypeOptionsDto - { - /// - /// Gets or sets the type. - /// - public string? Type { get; set; } + public string? Type { get; set; } - /// - /// Gets or sets the metadata fetchers. - /// - public IReadOnlyList MetadataFetchers { get; set; } = Array.Empty(); + /// + /// Gets or sets the metadata fetchers. + /// + public IReadOnlyList MetadataFetchers { get; set; } = Array.Empty(); - /// - /// Gets or sets the image fetchers. - /// - public IReadOnlyList ImageFetchers { get; set; } = Array.Empty(); + /// + /// Gets or sets the image fetchers. + /// + public IReadOnlyList ImageFetchers { get; set; } = Array.Empty(); - /// - /// Gets or sets the supported image types. - /// - public IReadOnlyList SupportedImageTypes { get; set; } = Array.Empty(); + /// + /// Gets or sets the supported image types. + /// + public IReadOnlyList SupportedImageTypes { get; set; } = Array.Empty(); - /// - /// Gets or sets the default image options. - /// - public IReadOnlyList DefaultImageOptions { get; set; } = Array.Empty(); - } + /// + /// Gets or sets the default image options. + /// + public IReadOnlyList DefaultImageOptions { get; set; } = Array.Empty(); } -- cgit v1.2.3