Update Appsettings, Update PageTitle

This commit is contained in:
Andre Beging
2025-03-28 07:23:59 +01:00
parent 3e9efd65c7
commit d11a225ffa
10 changed files with 19 additions and 16 deletions

View File

@@ -4,13 +4,6 @@
{
#region Public Properties
/// <summary>
/// Gets or sets the title displayed in the sidebar.
/// This property represents the text that appears in the application's sidebar,
/// typically used for informational or navigational purposes.
/// </summary>
public string? SidebarTitle { get; set; }
/// <summary>
/// Gets or sets the name of the "StepIn."
/// This property typically represents the label or identifier used for a specific feature
@@ -25,6 +18,13 @@
/// </summary>
public string? Title { get; set; } = "Foodsharing Musterhausen";
/// <summary>
/// Gets or sets the title displayed in the sidebar.
/// This property represents the text that appears in the application's sidebar,
/// typically used for informational or navigational purposes.
/// </summary>
public string? TitleShort { get; set; }
#endregion
}
}