using Pilz.Configuration; namespace OwnChar.App.Desktop.Settings; internal class MainWindowSettings : IChildSettings, ISettingsIdentifier { public static string Identifier => "ownchar.view.main"; public bool AllowAero { get; set; } public void Reset() { AllowAero = true; } }