21 lines
456 B
C#
21 lines
456 B
C#
|
using Microsoft.UI.Xaml.Controls;
|
|||
|
|
|||
|
using RustTools.ViewModels;
|
|||
|
|
|||
|
namespace RustTools.Views;
|
|||
|
|
|||
|
// TODO: Set the URL for your privacy policy by updating SettingsPage_PrivacyTermsLink.NavigateUri in Resources.resw.
|
|||
|
public sealed partial class SettingsPage : Page
|
|||
|
{
|
|||
|
public SettingsViewModel ViewModel
|
|||
|
{
|
|||
|
get;
|
|||
|
}
|
|||
|
|
|||
|
public SettingsPage()
|
|||
|
{
|
|||
|
ViewModel = App.GetService<SettingsViewModel>();
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|