2025-02-28 09:31:23 +03:00

19 lines
307 B
C#

using Microsoft.Maui;
using Microsoft.Maui.Hosting;
using System;
namespace MAUIIP_407
{
internal class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}