ConsEco/Sources/IHM/Platforms/MacCatalyst/AppDelegate.cs

10 lines
221 B

using Foundation;
namespace IHM
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}