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