quizapp/FWLAZ/Platforms/iOS/AppDelegate.cs
2024-09-01 21:12:09 +02:00

11 lines
224 B
C#

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