9 lines
214 B
C#
Raw Normal View History

2025-01-25 00:27:02 +01:00
using Foundation;
namespace WheresMyMoney.Maui;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}