19 lines
305 B
C#
Raw Normal View History

2025-03-07 11:09:52 +03:00
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
using System;
namespace MyDiplom
{
internal class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}