finish login & polish up

This commit is contained in:
2024-06-11 07:37:13 +02:00
parent b1b0cf132a
commit ffc4658d8e
10 changed files with 298 additions and 46 deletions

View File

@@ -0,0 +1,15 @@
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;
}
}