diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-06-18 13:22:52 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-18 13:22:52 +0000 |
| commit | 1da044e0eb6cd4a96f4c554a0348663380868f80 (patch) | |
| tree | 66514d35bb1a5caed4f76b70efc298c017ed429f /Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs | |
| parent | 116284fe995bfdf9b5b0aaddbb745ca1f278d841 (diff) | |
| parent | 9a51f484af3dbbb5717a88fb85473aec78234e32 (diff) | |
Merge pull request #3369 from crobibero/api-cleanup
Remove #nullable, make Task.Run async
Diffstat (limited to 'Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs b/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs index 5a83a030d..a5f012245 100644 --- a/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs +++ b/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs @@ -1,5 +1,3 @@ -#nullable disable - namespace Jellyfin.Api.Models.StartupDtos { /// <summary> @@ -10,16 +8,16 @@ namespace Jellyfin.Api.Models.StartupDtos /// <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; } + public string? MetadataCountryCode { get; set; } /// <summary> /// Gets or sets the preferred language for the metadata. /// </summary> - public string PreferredMetadataLanguage { get; set; } + public string? PreferredMetadataLanguage { get; set; } } } |
