mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			643 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			643 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Jellyfin.Api.Models.StartupDtos
 | |
| {
 | |
|     /// <summary>
 | |
|     /// The startup configuration DTO.
 | |
|     /// </summary>
 | |
|     public class StartupConfigurationDto
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets UI language culture.
 | |
|         /// </summary>
 | |
|         public string? UICulture { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the metadata country code.
 | |
|         /// </summary>
 | |
|         public string? MetadataCountryCode { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the preferred language for the metadata.
 | |
|         /// </summary>
 | |
|         public string? PreferredMetadataLanguage { get; set; }
 | |
|     }
 | |
| }
 |