aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs')
-rw-r--r--Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs33
1 files changed, 16 insertions, 17 deletions
diff --git a/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs b/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
index a5f012245..402707819 100644
--- a/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
+++ b/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
@@ -1,23 +1,22 @@
-namespace Jellyfin.Api.Models.StartupDtos
+namespace Jellyfin.Api.Models.StartupDtos;
+
+/// <summary>
+/// The startup configuration DTO.
+/// </summary>
+public class StartupConfigurationDto
{
/// <summary>
- /// The startup configuration DTO.
+ /// Gets or sets UI language culture.
/// </summary>
- public class StartupConfigurationDto
- {
- /// <summary>
- /// Gets or sets UI language culture.
- /// </summary>
- public string? UICulture { get; set; }
+ public string? UICulture { get; set; }
- /// <summary>
- /// Gets or sets the metadata country code.
- /// </summary>
- public string? MetadataCountryCode { 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; }
- }
+ /// <summary>
+ /// Gets or sets the preferred language for the metadata.
+ /// </summary>
+ public string? PreferredMetadataLanguage { get; set; }
}