StartupConfigurationDto.cs 643 B

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