bank/MauiApp1/Platforms/MacCatalyst/AppDelegate.cs
2022-06-30 12:22:13 +03:00

9 lines
202 B
C#

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