ffmpeg essentials fix Project reorganized git lfs ffmpeg removed ffmpeg added
19 lines
374 B
C#
19 lines
374 B
C#
using Microsoft.UI.Xaml.Controls;
|
|
using VDownload.Core.ViewModels.Home;
|
|
|
|
namespace VDownload.Core.Views.Home
|
|
{
|
|
public sealed partial class HomeView : Page
|
|
{
|
|
#region CONSTRUCTORS
|
|
|
|
public HomeView(HomeViewModel viewModel)
|
|
{
|
|
this.InitializeComponent();
|
|
this.DataContext = viewModel;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|