11 lines
229 B
C#
Raw Normal View History

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