11 lines
227 B
C#
Raw Normal View History

2025-02-28 09:09:55 +03:00
using Foundation;
namespace MauiApp1
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}