Refactor term-related settings into a dedicated class

Extracted term-related properties from AppSettings to a new TermSettings class for improved organization and separation of concerns. Updated appsettings.json to reflect the new structure.
This commit is contained in:
Andre Beging
2025-03-28 09:01:50 +01:00
parent ff5fbd50bf
commit 3d92833199
14 changed files with 49 additions and 36 deletions

View File

@@ -75,7 +75,7 @@ namespace FoodsharingSiegen.Server.Dialogs
_showInfo = true;
break;
case InteractionType.StepInBriefing:
_header = $"{AppSettings.StepInName} absolviert";
_header = $"{AppSettings.Terms.StepInName} absolviert";
break;
case InteractionType.ReleasedForVerification:
_header = "Zur Verifizierung freigegeben";