Implement Appsettings

This commit is contained in:
Andre Beging
2025-03-27 09:06:43 +01:00
parent 48db8db8ae
commit 8ea8130c69
10 changed files with 109 additions and 61 deletions

View File

@@ -0,0 +1,23 @@
namespace FoodsharingSiegen.Contracts.Model
{
public class AppSettings
{
#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 title of the application.
/// This property holds the display name or title of the application,
/// which may be used for branding purposes in various parts of the UI.
/// </summary>
public string? Title { get; set; } = "Foodsharing Musterhausen";
#endregion
}
}