LANCommander/LANCommander.Client/Platforms/iOS/AppDelegate.cs
2024-05-09 20:44:40 -05:00

10 lines
238 B
C#

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