Mobail_App/Platforms/iOS/AppDelegate.cs

11 lines
228 B
C#
Raw Permalink Normal View History

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