19 lines
436 B
C#
19 lines
436 B
C#
using Seyounth.Hyosung.UI.ViewModels.Pages;
|
|
using Wpf.Ui.Controls;
|
|
|
|
namespace Seyounth.Hyosung.UI.Views.Pages
|
|
{
|
|
public partial class SettingsPage : INavigableView<SettingsViewModel>
|
|
{
|
|
public SettingsViewModel ViewModel { get; }
|
|
|
|
public SettingsPage(SettingsViewModel viewModel)
|
|
{
|
|
ViewModel = viewModel;
|
|
DataContext = this;
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|