Initial commit

This commit is contained in:
2024-08-20 01:37:51 +02:00
commit 68ccf23f01
62 changed files with 2121 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
using System;
namespace Jugenddienst_Stunden {
internal class Program : MauiApplication {
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args) {
var app = new Program();
app.Run(args);
}
}
}