MAUI app added

This commit is contained in:
2024-12-17 17:19:39 +01:00
parent a605bb9947
commit 17d895f77d
43 changed files with 1198 additions and 0 deletions
@@ -0,0 +1,16 @@
using ObjCRuntime;
using UIKit;
namespace WorkFlowCheck.MAUI
{
public class Program
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, typeof(AppDelegate));
}
}
}