13 lines
261 B
C#
13 lines
261 B
C#
namespace TV_Player.MAUI
|
|
{
|
|
public partial class AppShell : Shell
|
|
{
|
|
private TVPlayerViewModel _tvPlayer;
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
_tvPlayer = new TVPlayerViewModel();
|
|
}
|
|
}
|
|
}
|