20 lines
449 B
C#
20 lines
449 B
C#
namespace FoodsharingSiegen.Contracts.Model
|
|
{
|
|
public class AppSettings
|
|
{
|
|
#region Public Properties
|
|
|
|
public bool DisableStepIn { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the mail server settings.
|
|
/// </summary>
|
|
public MailSettings Mail { get; set; } = new();
|
|
|
|
public TermSettings Terms { get; set; } = new();
|
|
|
|
public bool TestMode { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |