mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-13 20:43:31 +08:00
16 lines
413 B
C#
16 lines
413 B
C#
using BetterGenshinImpact.ViewModel.Pages;
|
|
using System.Windows.Controls;
|
|
|
|
namespace BetterGenshinImpact.View.Pages;
|
|
|
|
public partial class NotificationSettingsPage : Page
|
|
{
|
|
private NotificationSettingsPageViewModel ViewModel { get; }
|
|
|
|
public NotificationSettingsPage(NotificationSettingsPageViewModel viewModel)
|
|
{
|
|
DataContext = ViewModel = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|