Selector/Selector.MAUI/Platforms/iOS/AppDelegate.cs
2023-01-21 16:55:51 +00:00

11 lines
208 B
C#

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