Files
VDownload/VDownload.Core/VDownload.Core.Views/Authentication/AuthenticationView.xaml.cs

19 lines
424 B
C#
Raw Normal View History

using Microsoft.UI.Xaml.Controls;
using VDownload.Core.ViewModels.Authentication;
namespace VDownload.Core.Views.Authentication
{
public sealed partial class AuthenticationView : Page
{
#region CONSTRUCTORS
public AuthenticationView(AuthenticationViewModel viewModel)
{
this.InitializeComponent();
this.DataContext = viewModel;
}
#endregion
}
}