StartupConfigurationDto.cs 569 B

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