13 lines
203 B
C#
13 lines
203 B
C#
|
using Microsoft.Maui.Controls;
|
|||
|
|
|||
|
namespace DeviceApplication;
|
|||
|
|
|||
|
public partial class App : Application
|
|||
|
{
|
|||
|
public App()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
|
|||
|
MainPage = new MainPage();
|
|||
|
}
|
|||
|
}
|