mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
14 lines
321 B
C#
14 lines
321 B
C#
using Marechai.App.Presentation.ViewModels;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Marechai.App.Presentation.Views;
|
|
|
|
public sealed partial class SettingsPage : Page
|
|
{
|
|
public SettingsPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public SettingsViewModel? ViewModel => DataContext as SettingsViewModel;
|
|
} |