Files
ServiceManager/ServiceManager/Platforms/MacCatalyst/Program.cs
Yaël Perret b4e977948b first commit
2026-04-02 19:19:12 +02:00

17 lines
348 B
C#

using ObjCRuntime;
using UIKit;
namespace ServiceManager;
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));
}
}