Files
TaskHybrid/salesbook.Maui/Platforms/MacCatalyst/AppDelegate.cs
2025-06-26 10:08:21 +02:00

12 lines
252 B
C#

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