2024-08-30 15:29:48 +02:00
|
|
|
using System;
|
2020-11-12 08:29:42 -07:00
|
|
|
using System.Collections.Generic;
|
2020-06-19 13:10:10 -06:00
|
|
|
|
2023-01-31 12:18:10 +01:00
|
|
|
namespace Jellyfin.Api.Models.LibraryDtos;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Library options result dto.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class LibraryOptionsResultDto
|
2020-06-19 13:10:10 -06:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2023-01-31 12:18:10 +01:00
|
|
|
/// Gets or sets the metadata savers.
|
2020-06-19 13:10:10 -06:00
|
|
|
/// </summary>
|
2023-01-31 12:18:10 +01:00
|
|
|
public IReadOnlyList<LibraryOptionInfoDto> MetadataSavers { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
2020-06-19 13:10:10 -06:00
|
|
|
|
2023-01-31 12:18:10 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the metadata readers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IReadOnlyList<LibraryOptionInfoDto> MetadataReaders { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
2020-06-19 13:10:10 -06:00
|
|
|
|
2023-01-31 12:18:10 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the subtitle fetchers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IReadOnlyList<LibraryOptionInfoDto> SubtitleFetchers { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
2020-06-19 13:10:10 -06:00
|
|
|
|
2024-08-05 15:59:55 -06:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the list of lyric fetchers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IReadOnlyList<LibraryOptionInfoDto> LyricFetchers { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
|
|
|
|
|
2024-11-17 16:12:43 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the list of MediaSegment Providers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IReadOnlyList<LibraryOptionInfoDto> MediaSegmentProviders { get; set; } = Array.Empty<LibraryOptionInfoDto>();
|
|
|
|
|
|
2023-01-31 12:18:10 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the type options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IReadOnlyList<LibraryTypeOptionsDto> TypeOptions { get; set; } = Array.Empty<LibraryTypeOptionsDto>();
|
2020-06-19 13:10:10 -06:00
|
|
|
}
|