bloxstrap/Bloxstrap/UI/ViewModels/Settings/BloxstrapViewModel.cs
2024-10-01 14:46:06 +01:00

18 lines
483 B
C#

namespace Bloxstrap.UI.ViewModels.Settings
{
public class BloxstrapViewModel : NotifyPropertyChangedViewModel
{
public bool UpdateCheckingEnabled
{
get => App.Settings.Prop.CheckForUpdates;
set => App.Settings.Prop.CheckForUpdates = value;
}
public bool AnalyticsEnabled
{
get => App.Settings.Prop.EnableAnalytics;
set => App.Settings.Prop.EnableAnalytics = value;
}
}
}