mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
10 lines
205 B
C#
10 lines
205 B
C#
using Foundation;
|
|
|
|
namespace Oqtane.Maui;
|
|
|
|
[Register("AppDelegate")]
|
|
public class AppDelegate : MauiUIApplicationDelegate
|
|
{
|
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|
}
|