eeee/Platforms/MacCatalyst/AppDelegate.cs

11 lines
228 B
C#
Raw Permalink Normal View History

2025-02-27 15:31:43 +03:00
using Foundation;
namespace MobileApp
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}