af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
45 lines
1.5 KiB
C#
45 lines
1.5 KiB
C#
// <copyright file="LibraryOptionsResultDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Api.Models.LibraryDtos;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
/// <summary>
|
|
/// Library options result dto.
|
|
/// </summary>
|
|
public class LibraryOptionsResultDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the metadata savers.
|
|
/// </summary>
|
|
public IReadOnlyList<LibraryOptionInfoDto> MetadataSavers { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the metadata readers.
|
|
/// </summary>
|
|
public IReadOnlyList<LibraryOptionInfoDto> MetadataReaders { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the subtitle fetchers.
|
|
/// </summary>
|
|
public IReadOnlyList<LibraryOptionInfoDto> SubtitleFetchers { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of lyric fetchers.
|
|
/// </summary>
|
|
public IReadOnlyList<LibraryOptionInfoDto> LyricFetchers { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of MediaSegment Providers.
|
|
/// </summary>
|
|
public IReadOnlyList<LibraryOptionInfoDto> MediaSegmentProviders { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the type options.
|
|
/// </summary>
|
|
public IReadOnlyList<LibraryTypeOptionsDto> TypeOptions { get; set; } = Array.Empty<LibraryTypeOptionsDto>();
|
|
}
|