Version 1.0.1

This commit is contained in:
2025-01-25 00:27:02 +01:00
parent 61ddc095b3
commit afda59570e
173 changed files with 11530 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace WheresMyMoney.Maui;
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new AppShell());
}
}