JPTest/Platforms/MacCatalyst/AppDelegate.cs
2025-04-30 15:31:46 -05:00

11 lines
225 B
C#

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