MobileAPP/App.xaml.cs

13 lines
198 B
C#
Raw Permalink Normal View History

2025-02-27 15:16:22 +03:00
namespace MobileApp
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new AppShell();
}
}
}