16 lines
312 B
C#
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;
|
|
}
|
|
}
|