aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2023-01-31 12:18:10 +0100
committerShadowghost <Ghost_of_Stone@web.de>2023-02-02 18:50:33 +0100
commitf5f890e68562e55d4bed16c454c4b4305152b296 (patch)
treeb52e3b45ceb2faa446153866600b4456fed44c8b /Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs
parent58b3945805db4f88bc069ee84013bdf85d7429b1 (diff)
Migrate to file-scoped namespaces
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; }
}