Files
WorkTime/WorkTime.Mobile/App.xaml.cs
2025-11-12 11:49:15 +01:00

13 lines
308 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace WorkTime.Mobile;
public partial class App : Application {
public App() {
InitializeComponent();
}
protected override Window CreateWindow(IActivationState? activationState) {
return new Window(new AppShell());
}
}