Poj/Platforms/MacCatalyst/AppDelegate.cs

11 lines
223 B
C#
Raw Normal View History

2025-02-28 08:58:58 +03:00
using Foundation;
namespace Proj
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}