Introduced a new "TestMode" setting in AppSettings to toggle test mode. Updated multiple pages to display a warning message when "TestMode" is enabled. This ensures users are informed when changes may not be persistent.
13 lines
247 B
C#
13 lines
247 B
C#
namespace FoodsharingSiegen.Contracts.Model
|
|
{
|
|
public class AppSettings
|
|
{
|
|
#region Public Properties
|
|
|
|
public TermSettings Terms { get; set; } = new();
|
|
|
|
public bool TestMode { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |