StartupConfigurationDto.cs 659 B

12345678910111213141516171819202122232425
  1. #nullable disable
  2. namespace Jellyfin.Api.Models.StartupDtos
  3. {
  4. /// <summary>
  5. /// The startup configuration DTO.
  6. /// </summary>
  7. public class StartupConfigurationDto
  8. {
  9. /// <summary>
  10. /// Gets or sets UI language culture.
  11. /// </summary>
  12. public string UICulture { get; set; }
  13. /// <summary>
  14. /// Gets or sets the metadata country code.
  15. /// </summary>
  16. public string MetadataCountryCode { get; set; }
  17. /// <summary>
  18. /// Gets or sets the preferred language for the metadata.
  19. /// </summary>
  20. public string PreferredMetadataLanguage { get; set; }
  21. }
  22. }