App/Payesh.Maui/Platforms/MacCatalyst/AppDelegate.cs

10 lines
229 B
C#
Raw Permalink Normal View History

2023-09-08 17:03:31 +03:30
using Foundation;
namespace Payesh.Maui
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}