mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-11 15:24:02 +08:00
16 lines
299 B
C#
16 lines
299 B
C#
using MicaSetup.ViewModels;
|
|
using System.Windows.Controls;
|
|
|
|
namespace MicaSetup.Views;
|
|
|
|
public partial class InstallPage : UserControl
|
|
{
|
|
public InstallViewModel ViewModel { get; }
|
|
|
|
public InstallPage()
|
|
{
|
|
DataContext = ViewModel = new();
|
|
InitializeComponent();
|
|
}
|
|
}
|