12 lines
199 B
C#
12 lines
199 B
C#
|
|
namespace Payesh.Maui
|
|||
|
|
{
|
|||
|
|
public partial class App : Application
|
|||
|
|
{
|
|||
|
|
public App()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
|
|||
|
|
MainPage = new AppShell();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|