Files
App/OwnChar.App.Desktop/Settings/MainWindowSettings.cs
2024-06-11 07:37:13 +02:00

16 lines
312 B
C#

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;
}
}