mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace Jellyfin.Api.Models.LibraryDtos
 | |
| {
 | |
|     /// <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 type options.
 | |
|         /// </summary>
 | |
|         public IReadOnlyList<LibraryTypeOptionsDto> TypeOptions { get; set; } = Array.Empty<LibraryTypeOptionsDto>();
 | |
|     }
 | |
| }
 |