diff options
| author | Bill Thornton <billt2006@gmail.com> | 2025-04-11 13:58:34 -0400 |
|---|---|---|
| committer | Bill Thornton <billt2006@gmail.com> | 2025-04-11 13:58:34 -0400 |
| commit | 874f6895a216fdd9274c1e8a720a8b843274d75c (patch) | |
| tree | 2630e532c4c17fbd38606e6bde143d99a2927439 /Jellyfin.Api/Models | |
| parent | c9720475662fc47f7059d62f3ccc43f58e12c817 (diff) | |
Add ServerName to startup configuration
Diffstat (limited to 'Jellyfin.Api/Models')
| -rw-r--r-- | Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs b/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs index 402707819..1ba23339d 100644 --- a/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs +++ b/Jellyfin.Api/Models/StartupDtos/StartupConfigurationDto.cs @@ -6,6 +6,11 @@ namespace Jellyfin.Api.Models.StartupDtos; public class StartupConfigurationDto { /// <summary> + /// Gets or sets the server name. + /// </summary> + public string? ServerName { get; set; } + + /// <summary> /// Gets or sets UI language culture. /// </summary> public string? UICulture { get; set; } |
