namespace FoodsharingSiegen.Contracts.Model
{
public class AppSettings
{
#region Public Properties
///
/// Gets or sets the name of the "StepIn."
/// This property typically represents the label or identifier used for a specific feature
/// or section within the application.
///
public string? StepInName { get; set; } = "StepIn";
///
/// 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.
///
public string? Title { get; set; } = "Foodsharing Musterhausen";
///
/// 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.
///
public string? TitleShort { get; set; }
#endregion
}
}