Upload plików - początek

This commit is contained in:
Krzysztof KrzysiekSiemv Smaga
2025-03-10 19:49:55 +01:00
commit 582c0f69ab
3536 changed files with 371692 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace Navigation_Between;
class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}