StartupConfigurationDto.cs 689 B

123456789101112131415161718192021222324252627
  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 the server name.
  9. /// </summary>
  10. public string? ServerName { get; set; }
  11. /// <summary>
  12. /// Gets or sets UI language culture.
  13. /// </summary>
  14. public string? UICulture { get; set; }
  15. /// <summary>
  16. /// Gets or sets the metadata country code.
  17. /// </summary>
  18. public string? MetadataCountryCode { get; set; }
  19. /// <summary>
  20. /// Gets or sets the preferred language for the metadata.
  21. /// </summary>
  22. public string? PreferredMetadataLanguage { get; set; }
  23. }