Files
IPTVplayer/TV Player/AppShell.xaml.cs
T
2024-05-05 16:19:58 +03:00

13 lines
261 B
C#

namespace TV_Player.MAUI
{
public partial class AppShell : Shell
{
private TVPlayerViewModel _tvPlayer;
public AppShell()
{
InitializeComponent();
_tvPlayer = new TVPlayerViewModel();
}
}
}