MobileApp/Platforms/iOS/AppDelegate.cs

11 lines
228 B
C#
Raw Normal View History

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