AppSAV/MauiApp1/Platforms/iOS/AppDelegate.cs
2025-01-16 17:48:14 +01:00

9 lines
204 B
C#

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