using System;
using System.Collections.Generic;
namespace Jellyfin.Api.Models.LibraryDtos;
/// 
/// Library options result dto.
/// 
public class LibraryOptionsResultDto
{
    /// 
    /// Gets or sets the metadata savers.
    /// 
    public IReadOnlyList MetadataSavers { get; set; } = Array.Empty();
    /// 
    /// Gets or sets the metadata readers.
    /// 
    public IReadOnlyList MetadataReaders { get; set; } = Array.Empty();
    /// 
    /// Gets or sets the subtitle fetchers.
    /// 
    public IReadOnlyList SubtitleFetchers { get; set; } = Array.Empty();
    /// 
    /// Gets or sets the list of lyric fetchers.
    /// 
    public IReadOnlyList LyricFetchers { get; set; } = Array.Empty();
    /// 
    /// Gets or sets the list of MediaSegment Providers.
    /// 
    public IReadOnlyList MediaSegmentProviders { get; set; } = Array.Empty();
    /// 
    /// Gets or sets the type options.
    /// 
    public IReadOnlyList TypeOptions { get; set; } = Array.Empty();
}