mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
18 lines
483 B
C#
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;
|
|
}
|
|
}
|
|
}
|