mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Jellyfin.Api.Models.LibraryDtos
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Library option info dto.
 | 
						|
    /// </summary>
 | 
						|
    public class LibraryOptionInfoDto
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets name.
 | 
						|
        /// </summary>
 | 
						|
        public string? Name { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a value indicating whether default enabled.
 | 
						|
        /// </summary>
 | 
						|
        public bool DefaultEnabled { get; set; }
 | 
						|
    }
 | 
						|
}
 |