Files
IPTVplayer/TV Player/Platforms/MacCatalyst/AppDelegate.cs
T
2024-01-15 07:49:55 +02:00

11 lines
228 B
C#

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