Files
FoodsharingOnboarding/FoodsharingSiegen.Contracts/Model/AppSettings.cs
Andre Beging 43c51420c3 Add DisableStepIn flag to control StepIn-related interactions
Introduced the `DisableStepIn` flag in AppSettings to toggle StepIn-related features. Updated UI components to conditionally render StepIn interactions and filtering options based on this flag. Refactored group permissions for interactions to include Ambassadors where applicable.
2025-04-02 08:54:45 +02:00

15 lines
296 B
C#

namespace FoodsharingSiegen.Contracts.Model
{
public class AppSettings
{
#region Public Properties
public bool DisableStepIn { get; set; }
public TermSettings Terms { get; set; } = new();
public bool TestMode { get; set; }
#endregion
}
}